With the Razor view engine in MVC3,
Is it possible to render a legacy ascx?
I was expecting to be able to do something like:
@Html.RenderPartial("Footer.ascx")
Yes. Try this instead:
@Html.Partial("Footer")
or
@{ Html.RenderPartial("Footer"); }