gpt4 book ai didi

twitter-bootstrap - Bootstrap 在 Razor 页面中不起作用

转载 作者:行者123 更新时间:2023-12-03 23:40:51 24 4
gpt4 key购买 nike

Bootstrap 在我的索引页面和默认生成的其他页面中工作....但是我在这些页面上使用 crud 创建的文件夹和脚手架 bootstrap 不起作用.....我尝试了同样的事情在 asp.net core 2 mvc 模板中,它工作正常。

这是我的创建 View

@page
@model Memberships.Pages.Section_Page.CreateModel

@{
Layout = null;
}

<!DOCTYPE html>

<html>
<head>
<meta name="viewport" content="width=device-width" />
<title>Create</title>
</head>
<body>

<h4>Section</h4>
<hr />
<div class="row">
<div class="col-md-4">
<form method="post">
<div asp-validation-summary="ModelOnly" class="text-danger">
</div>
<div class="form-group">
<label asp-for="Section.Title" class="control-label">
</label>
<input asp-for="Section.Title" class="form-control" />
<span asp-validation-for="Section.Title" class="text-
danger"></span>
</div>
<div class="form-group">
<div class="col-md-offset-2 col-md-10">
<input type="submit" value="Create" class="btn btn-
success" />
</div>
</div>
</form>
</div>
</div>

<div>
<a asp-page="Index">Back to List</a>
</div>

@section Scripts {
@{await Html.RenderPartialAsync("_ValidationScriptsPartial");}
}
</body>
</html>

Here is screenshot of my create view

最佳答案

您没有在 <head> 中刷新 Bootstrap所以页面无法知道您要加载它。

你需要一些类似的东西:

<link href="https://maxcdn.bootstrapcdn.com/bootstrap/4.0.0/css/bootstrap.min.css" rel="stylesheet">

由于它在其他页面上工作,我假设您已经从您的 _Layout.cshtml 中引用了该库。 (或其他一些共享布局)。但是,不会使用此布局,因为您已明确告诉它不要加载布局:

@{
Layout = null;
}

关于twitter-bootstrap - Bootstrap 在 Razor 页面中不起作用,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/48508129/

24 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com