Part 61 - Named sections in layout files in mvc

来源:互联网 发布:大金鹅复制软件 编辑:程序博客网 时间:2024/06/05 10:45

Let us understand sections in a layout file with an example. Please watch Parts 59 and 60 before proceeding. 

At the moment on all the views(Index, Create, Edit, Details & Delete), we see the same navigation menu as shown below. 
named sections in layout in mvc

Let us say we want to change the navigation menu dynamically. For example, if I am on the Edit view, then I want the navigation menu to contain links for List, Details and Deleteviews as shown below. 
rendersection in mvc 

Here are the steps to achieve this using sections in layout file
Step 1: Define "Menu" section in Edit view. To define a section, use @section followed by, the name of the section. The menu section, is going to display List, Details and Delete links.
@section Menu
{
    @Html.ActionLink("List", "Index"<br />
    @Html.ActionLink("Details", "Details"new { id = Model.Id }) <br />
    @Html.ActionLink("Delete", "Delete"new { id = Model.Id })
}

Step 2: Specify a location in layout file, where we want the "Menu" section to be rendered.
Rendering sections in layout file 

The above code that is marked in red, is very simple to understand. If you navigate to a view, and if there is a "Menu" section defined in that view, then that content will be injected, else, the default content that is specified in the layout file is used. 

For example, Navigate to Edit view. Since "Edit" view has got "Menu" section defined, the content from that section (i.e List, Details and Delete links ) will be displayed. 

Now navigate to "Delete" view. "Menu" section is not defined in this view, so default content from the layout file (i.e Index action link) will be displayed. 

0 0