Can you explain RenderBody and RenderPage in MVC?

Technology CommunityCategory: ASP.NET MVCCan you explain RenderBody and RenderPage in MVC?
VietMX Staff asked 3 years ago

RenderBody is like ContentPlaceHolder in web forms. This will exist in layout page and it will render the child pages/views. Layout page will have only one RenderBody() method. RenderPage also exists in Layout page and multiple RenderPage() can be there in Layout page.