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

Popular posts from this blog

c++ - Is it possible to compile a VST on linux? -

java - Output of Eclipse is rubbish -

jquery - Confused with JSON data and normal data in Django ajax request -