标签: c# css asp.net-mvc
如何仅针对一个特定视图使用特定的css文件,以便网站的其余部分使用Site.css,但一个特定视图使用我的Custom.css文件?
答案 0 :(得分:0)
在视图开头的代码块中,将布局变量声明为不同的源路径,即:
@{ ViewBag.Title = "About"; //This is the about page Layout = "~/Views/Shared/_AboutLayout.cshtml"; }