I am converting an ASP.Net web forms project to MVC3. The master page contains multiple content place holders at different locations.
I replaced the first content place holder with @RenderBody() but I am confused with what to do of the second one.
One approach might be to separate views and place a @Html.RenderAction() for each content place holder method. Is there a better way to do it?
Razor has got
sectionsunderstanding in place of asp.net webforms ContentPlaceHolders. Take a look at this introductionary link.