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# - SharpSVN - How to get the previous revision? -

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

url - Querystring manipulation of email Address in PHP -