What is the appropriate way of rendering a child template?
And what\'s the difference? Both seem to work for me.
And why does @Html.RenderPartial()
@Html.RenderPartial()
@RenderPages()
The above does not work in ASP.NET MVC. It only works in WebPages.
@Html.Partial("_Footer")
You will need to use the above in ASP.NET MVC.