我想在我的 ASP.Net MVC 3 应用程序中使用来自 Twitter 的 Bootstrap 。我下载了 bootstrap.css 并将其添加到我的 Content 文件夹中的项目中。我打开了 _Layout.cshtml 并添加了一个指向该文件的链接:
<head>
<title>@ViewBag.Title</title>
<link href="@Url.Content("~/Content/Site.css")" rel="stylesheet" type="text/css" />
<link href="@Url.Content("~/Content/bootstrap.css")" rel="stylesheet" type="text/css" />
当我运行应用程序时,没有应用样式表。如何从我的 _Layout.cshtml 文件中同时引用 Site.css 和 bootstrap.css?