解决方法
在母版页的head部分(例如_Layout.cshtml)中添加一个RenderSection调用.您的标题部分可能如下所示:
<head> <Meta charset="utf-8" /> <Meta name="description" content="The content description" /> <link rel="shortcut icon" href="@Url.Content("~/Content/images/favicon.ico")" /> <title>@ViewBag.Title</title> @RenderSection("css",false) </head>
然后在你的Index.cshtml中使用该部分添加你的css链接:
@section css { <link href="@Url.Content("~/css/style.css")" rel="stylesheet"/> }
请注意,“css”是您的部分的唯一名称,需要匹配.您也可以在任何所需的视图中使用此部分.然后,您在css部分中指定的部分将在html的head-tag中呈现,就像您将RenderSection占位符放在_Layout.cshtml中一样.