Web Pages(Web 頁面)

Web Pages - 頁面佈局 語法

透過 Web Pages ,建立一個佈局一致的網(wǎng)站是很容易的事。

Web Pages - 頁面佈局 範(fàn)例

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