如何将外部CSS样式表链接到ASP.NET MVC框架中的视图?
我已经在MVC架构中的内容文件夹下创建了一个site.css stylesheet,但是在添加样式后,我的视图没有任何更改。 如何将它们链接在一起? solutions Explorer在Visual Studio中 查看示例:
@model SchoolProject.Models.Teacher
@{
ViewBag.Title = "Delete";
}
<h2>Warning: Deleting is permanent</h2>
<div>
<div>@Model.FirstName @Model.LastName</div>
</div>
<form method="POST" action="/Teacher/DeleteTeacher/@Model.Id">
<div>
<input type="submit" value="Delete" />
</div>
</form>
I have created a Site.css stylesheet under Content folder in my MVC architecture however I don't see any changes in my VIEW after adding styles to it.
How do I link them together?
Solutions Explorer in Visual Studio
VIEW example:
@model SchoolProject.Models.Teacher
@{
ViewBag.Title = "Delete";
}
<h2>Warning: Deleting is permanent</h2>
<div>
<div>@Model.FirstName @Model.LastName</div>
</div>
<form method="POST" action="/Teacher/DeleteTeacher/@Model.Id">
<div>
<input type="submit" value="Delete" />
</div>
</form>
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(2)
如果您在视图中使用布局页面:
打开视图 - &gt; shared-&gt; layout.cshtml以及to header drag&amp;删除site.css文件。
如果您不在视图中使用布局页面,则必须拖动&amp;将site.css文件放在您的视图中。
If you using Layout page in your View:
Open Views->Shared->Layout.cshtml and to the header drag & drop the Site.css file.
if You not using Layout page in your View, you have to drag & drop the Site.css file in your View.
您可以在“ Bundleconfig.cs”文件中检查或链接CSS。
您可以导航app_start&gt; bundleconfig.cs
在这里,您可以找到链接CSS文件的代码
You can check or link your css inside 'BundleConfig.cs' file.
You can navigate it App_Start>BundleConfig.cs
here you can find code to link your css file