Web ページ
Web ページ - ページ レイアウト 構文
Web ページを使用すると、一貫したレイアウトの Web サイトを簡単に作成できます。
Web ページ - ページ レイアウト 例
<html> <body> @RenderPage("header.cshtml") <h1>Hello Web Pages</h1> <p>This is a paragraph</p> @RenderPage("footer.cshtml") </body> </html>
Web ページ
Web ページを使用すると、一貫したレイアウトの Web サイトを簡単に作成できます。
<html> <body> @RenderPage("header.cshtml") <h1>Hello Web Pages</h1> <p>This is a paragraph</p> @RenderPage("footer.cshtml") </body> </html>