Esempio n. 1
0
        protected override ViewEngineResult FindView(ControllerContext context)
        {
            ViewEngineResult result = ViewEngineCollection.FindView(context, ViewName, MasterName);

            if (result.View != null)
            {
                return(result);
            }

            // we need to generate an exception containing all the locations we searched
            StringBuilder locationsText = new StringBuilder();

            foreach (string location in result.SearchedLocations)
            {
                locationsText.AppendLine();
                locationsText.Append(location);
            }
            throw new InvalidOperationException(
                      String.Format(
                          CultureInfo.CurrentCulture,
                          MvcResources.Common_ViewNotFound,
                          ViewName,
                          locationsText
                          )
                      );
        }