Web Pages(Web 页面)

Web Pages - 页面布局 语法

通过 Web Pages ,创建一个布局一致的网站是很容易的事。

Web Pages - 页面布局 示例

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

热门推荐