asp.net mvc 3 - MVC3 Razor: Is it Possible to Render a Legacy ASCX? -
with razor view engine in mvc3,
is possible render legacy ascx?
i expecting able like:
@html.renderpartial("footer.ascx")
yes. try instead:
@html.partial("footer")
or
@{ html.renderpartial("footer"); }
Comments
Post a Comment