首页 > 编程 > .NET > 正文

ASP.Net MVC 布局页、模板页使用方法详细介绍

2024-07-10 12:49:00
字体:
来源:转载
供稿:网友

一、Views文件夹 -> Shared文件夹下的 _Layout.cshtml 母版页

@RenderBody

当创建基于_Layout.cshtml布局页面的视图时,视图的内容会和布局页面合并,而新创建视图的内容会通过_Layout.cshtml布局页面的@RenderBody()方法呈现在标签之间。

@RenderPage
从名称可以猜出来这个方法是要呈现一个页面。比如网页中固定的头部可以单独放在一个共享的视图文件中,然后在布局页面中通过这个方法调用,用法如下:
@RenderPage(“~/Views/Shared/_Header.cshtml”)
带参数
@RenderPage(“~/Views/Shared/_Header.cshtml”,new{parm="my",parm2="you")
调用页面获取参数:
//获取 RenderPage() 传递过来的参数
@PageData["param"]

@RenderSection

布局页面还有节(Section)的概念,也就是说,如果某个视图模板中定义了一个节,那么可以把它单独呈现出来
为了防止因缺少节而出现异常,可以给RenderSection()提供第2个参数:
@RenderSection("head", false)

@if (IsSectionDefined("head"))
        {
            @RenderSection("head", false)
        }
        else
        {
            <p>SubMenu Section is not defined!</p>
        }

 代码如下:

<!DOCTYPE html> <html> <head>   <title>@ViewBag.Title</title>   <link href="@Url.Content(" rel="external nofollow" ~/Content/Site.css")" rel="stylesheet" type="text/css" />   <script src="@Url.Content("~/Scripts/jquery-1.4.4.min.js")" type="text/javascript"></script>   @RenderSection("head", required: true)@*View页面自定义特定js/css使用*@ </head>  <body>   @RenderPage("~/Views/Shared/_Header.cshtml")   @RenderBody() </body> </html> 

二、创建视图,使用母版页

代码如下:

@{   ViewBag.Title = "Index";   Layout = "~/Views/Shared/_Layout.cshtml"; } <h2>Index</h2> @section Head{   <script type="text/javascript">     $(function () {       alert("hello jquery");     });   </script> } <p>执行C#普通语法</p><br /> @DateTime.Now.Date.ToShortDateString()  <p>执行C#语句段</p> @{   List<string> list = new List<string> { "Mvc3", "Razor" };   list.Add(".Net4");   } <ul> @foreach(string s in list) {   if (string.IsNullOrEmpty(s))   {     <li>空</li>   }   else   {      <li>@s</li>   } } </ul> 

三、生成页面的源代码

<!DOCTYPE html><html><head>  <title>Index</title>  <link href="/Content/Site.css" rel="external nofollow" rel="stylesheet" type="text/css" />  <script src="/Scripts/jquery-1.4.4.min.js" type="text/javascript"></script>    <script type="text/javascript">    $(function () {      alert("hello jquery");    });  </script></head><body>  <h2>Index</h2><p>执行C#普通语法</p><br />2013/3/11<p>执行C#语句段</p><ul>    <li>Mvc3</li>    <li>Razor</li>    <li>.Net4</li></ul> </body></html>            
发表评论 共有条评论
用户名: 密码:
验证码: 匿名发表