Explain Sections is MVC?

Technology CommunityCategory: ASP.NET MVCExplain Sections is MVC?
VietMX Staff asked 3 years ago

Section are the part of HTML which is to be rendered in layout page. In Layout page we will use the below syntax for rendering the HTML –

@RenderSection(“TestSection”)

And in child pages we are defining these sections as shown below –

@section TestSection{
     <h1>Test Content</h1>
}