Я установил Bootstrap с помощью LibMan в Visual Studio с jQuery и добавил его ссылку в файл _layout.cshtml
, но он не работает - это означает, что он по-прежнему показывает содержимое в стиле браузера по умолчанию. Не могли бы вы помочь мне найти проблему?
<!DOCTYPE html>
<html>
<head>
<meta name="viewport" content="width=device-width" />
@*// Bootstrap Libraries*@
<link href="~/lib/bootstrap/css/bootstrap.css" rel="stylesheet" />
<link href="~/css/StyleSheet.css" rel="stylesheet" />
@* Jquery Libs *@
<script src="~/lib/jquery/jquery.js"></script>
<title>@ViewBag.Title</title>
</head>
<body>
<div class="container">
@RenderBody()
</div>
@if (IsSectionDefined("Scripts"))
{
@RenderSection("Scripts", required: true)
}
</body>
</html>