net mvc 在_Layout.shtml文件中用RenderSection嵌入块实现母板页一样的页面分区功能

layout文件中:

<head>
<meta charset="utf-8" />
<title>@ViewBag.Title</title>
<link href="@Url.Content("~/Content/Site.css")" rel="stylesheet" type="text/css" />
@RenderSection("head", false)  //第二个参数为ture则每个子页都必须包含该section,为false则不用。
</head>
 cshtml模板文件中:

@section head
{
<script type="text/javascript"">
   //Your java script here
</script>
}

posted @ 2012-08-15 14:22  striiiiing  阅读(256)  评论(0编辑  收藏  举报