您好,登錄后才能下訂單哦!
--------模板(SiteLayout.cshtml)
<html> <head> <title>@ViewBag.Title</title> </head> <body> <h2>我是模板</h2> <!--繼承頁面顯示內容的部分--> @RenderBody() <!--部分渲染(部分模塊)--> <!--RenderSection:flase表示繼承此模板的頁面可以不用實現Center渲染部分,--> <h2>中間部分:@RenderSection("Center",false)</h2> <h2>尾部:@RenderSection("Footer",false)</h2> <!--表示,如何繼承此模板的頁面沒有實現Footer渲染部分,則使用默認的渲染--> @if(IsSectionDefined("Footer")) { RenderSection("Footer"); } else { <span>asdasdasd</span> } </body> </html>
--------繼承頁面(Array.cshtml)
@{ //指向模板頁 Layout = "~/Views/SiteLayout.cshtml"; ViewBag.Title = "Array"; } <!--實現渲染部分--> @section Footer{ sdasdasfasfasf } @section Center{ <span>center</span> }
--------統一布局配置文件(Views/_ViewStart.cshtml)
@{ Layout = "~/Views/Shared/_Layout.cshtml"; }
免責聲明:本站發布的內容(圖片、視頻和文字)以原創、轉載和分享為主,文章觀點不代表本網站立場,如果涉及侵權請聯系站長郵箱:is@yisu.com進行舉報,并提供相關證據,一經查實,將立刻刪除涉嫌侵權內容。