版面页面头:
<head>
<link href="@Url.Content("~/Content/themes/base/Site.css")"
rel="stylesheet" type="text/css" />
</head>
应用程序中的视图(AnotherView)需要:
<link href="@Url.Content("~/Content/themes/base/AnotherPage.css")"
rel="stylesheet" type="text/css" />
AnotherView有一个局部视图(AnotherPartial),它需要:
<link href="@Url.Content("~/Content/themes/base/AnotherPartial.css")"
rel="stylesheet" type="text/css" />
问题:如何添加这些CSS文件链接到布局头的AnotherView和AnotherPartial链接?
RenderSection不是一个好主意,因为AnotherPage可以有多个Partials。将所有CSS添加到头部是没有用的,因为它会动态更改(取决于Anotherpages)。
@NuriYILMAZ根据您的标题,“从视图”和“或部分视图”之间存在巨大差异。无论如何,对此有什么新想法吗?
—
Shimmy Weitzhandler,2012年