ASP.NET Web Pages – 頁面佈局語法

ASP.NET Web Pages – 頁面佈局語法

ASP.NET Web Pages – 頁面佈局語法


資料來源: https://www.runoob.com/aspnet/webpages-layout.html


引入相同的頭部與尾部

<html>
    <body>
        @RenderPage("header.cshtml")
        <h1>Hello Web Pages</h1>
        <p>This is a paragraph</p>
        @RenderPage("footer.cshtml")
    </body>
</html>


載入身體

<html>
    <body>
        <p>This is header text</p>
        @RenderBody()
        <p>&copy; 2012 Runoob. All rights reserved.</p>
    </body>
</html>


載入任何部位

@{Layout="Layout.cshtml";}

<h1>Welcome to Runoob.com</h1>

<p>
Lorem ipsum dolor sit amet, consectetur adipisicing elit,sed do eiusmod tempor incididunt ut labore et dolore magna aliqua. Ut enim ad minim veniam, quis nostrud exercitation ullamco laborisnisi ut aliquip ex ea commodo consequat.
</p>

發表迴響

你的電子郵件位址並不會被公開。 必要欄位標記為 *