Esempio n. 1
0
        internal static IView FindPartialView(
            ViewContext viewContext,
            string partialViewName,
            ViewEngineCollection viewEngineCollection
            )
        {
            ViewEngineResult result = viewEngineCollection.FindPartialView(
                viewContext,
                partialViewName
                );

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

            StringBuilder locationsText = new StringBuilder();

            foreach (string location in result.SearchedLocations)
            {
                locationsText.AppendLine();
                locationsText.Append(location);
            }

            throw new InvalidOperationException(
                      String.Format(
                          CultureInfo.CurrentCulture,
                          MvcResources.Common_PartialViewNotFound,
                          partialViewName,
                          locationsText
                          )
                      );
        }
Esempio n. 2
0
        protected override ViewEngineResult FindView(ControllerContext context) {
            ViewEngineResult result = ViewEngineCollection.FindPartialView(context, ViewName);
            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.CurrentUICulture,
                MvcResources.Common_PartialViewNotFound, ViewName, locationsText));
        }