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 の両方を参照するにはどうすればよいですか?