[asp.net core]ASP.NET MVC3视图占位符RenderSection使用示例

更新时间:2019-01-07    来源:ASP.NET MVC    手机版     字体:

【www.bbyears.com--ASP.NET MVC】

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{
    <script src="http://code.jquery.com/jquery-latest.js" type="text/javascript"></script>
}

@section Body_Content{
   
    <script type="text/javascript">
        $(document).ready(function () {
            $("#msg").html("hello,section.");
        });
    </script>
}

本文来源:http://www.bbyears.com/asp/47106.html