MVC在母版页设置子页面的css和js引用布局

 

1、在母版页中指定子页面css和js布局

@RenderSection("Styles", false)
@RenderSection("Scripts", false)

说明:false表示子页面可以不理会此布局要求

2、子页面使用布局

@section Styles{ }   //括号中放置其他css的引用或自定义的<style> </style>标签
@section scripts{ }  //括号中放置其他js的引用或自定义的<script></script>标签
—— 完 ——