Визуализация * .aspx в методе MVC IView.Render () - PullRequest
1 голос
/ 18 августа 2010

Я хочу визуализировать * .aspx вместо * .ascx

namespace GenericMVCPlatform.Generics
{
    public class PlatformView : IView
    {
        public void Render(ViewContext viewContext, System.IO.TextWriter writer)
        {
             // Here I would like to render an *.aspx instead of a *.ascx
        }

        private static MvcHtmlString PartialFor<TPlatformView>(this HtmlHelper instance, TPlatformView viewModel)
        {
            // This one only works for *.ascx
            var result = instance.Partial("~/Views/Shared/PlatformView/Index.ascx" , viewModel);
            return result;
        }
    }
}

Ранее я успешно рендерил * .ascx с использованием HtmlHelper.Но как мне отрендерить * .aspx?

...