一聚教程网:一个值得你收藏的教程网站

热门教程

ASP.NET MVC3视图占位符RenderSection使用示例

时间:2022-06-25 08:52:21 编辑:袖梨 来源:一聚教程网

hared/MasterPage.cshtml:

 代码如下 复制代码





    @ViewBag.Title
    @this.RenderSection("Head_Js", false)


    @this.RenderSection("Body_Content", true)

Home/Index.cshtml:

 代码如下 复制代码


@{
    ViewBag.Title = "ASP.NET MVC3视图占位符RenderSection使用示例";
    Layout = "~/Views/Shared/MasterPage.cshtml";
}

@section Head_Js{
   
}

@section Body_Content{
   


   
}

热门栏目