I'm building an asp.net website (webforms) in Visual Studio 2017 version 15.2 (26430.16) and Microsoft .NET Framework version 4.7.03056. (targetFramework .NET = 4.5.2).
在创建解决方案时,将创建bootstrap.css文件以及Site.master等文件。
当我编辑bootstrap.css文件时,我可以看到在本地主机上查看网站时发生的变化,但在发布到我的主机后,它似乎没有将这些变化应用到实时网站。
我的"网站.母版"页的一部分:
<%@ Master Language="C#" AutoEventWireup="true" CodeFile="Site.master.cs" Inherits="SiteMaster" %>
<!DOCTYPE html>
<html lang="en">
<head runat="server">
<title>CompanyX | <%: Page.Title %></title>
<meta charset="utf-8" />
<meta name="viewport" content="width=device-width, initial-scale=1.0" />
<meta name="keywords" content="CompanyX, ..." class="next-head" />
<meta name="author" content="CompanyX" />
<meta http-equiv="X-UA-Compatible" content="IE=edge" />
<meta property="og:title" content="CompanyX" />
<meta property="og:description" content="..." />
<link href="~/favicon.ico" rel="shortcut icon" type="image/x-icon" />
<asp:PlaceHolder runat="server">
<%: Scripts.Render("~/bundles/modernizr") %>
</asp:PlaceHolder>
<webopt:bundlereference runat="server" path="~/Content/css" />
<asp:ContentPlaceHolder ID="Stylesheets" runat="server">
<link rel="stylesheet" href="/Content/Site.css" type="text/css" runat = "server" />
</asp:ContentPlaceHolder>
</head>
<body>
<form runat="server">
<asp:ScriptManager runat="server">
<Scripts>
<%--To learn more about bundling scripts in ScriptManager see https://go.microsoft.com/fwlink/?LinkID=301884 --%>
<%--Framework Scripts--%>
<asp:ScriptReference Name="MsAjaxBundle" />
<asp:ScriptReference Name="jquery" />
<asp:ScriptReference Name="bootstrap" />
<asp:ScriptReference Name="respond" />
<asp:ScriptReference Name="WebForms.js" Assembly="System.Web" Path="~/Scripts/WebForms/WebForms.js" />
<asp:ScriptReference Name="WebUIValidation.js" Assembly="System.Web" Path="~/Scripts/WebForms/WebUIValidation.js" />
<asp:ScriptReference Name="MenuStandards.js" Assembly="System.Web" Path="~/Scripts/WebForms/MenuStandards.js" />
<asp:ScriptReference Name="GridView.js" Assembly="System.Web" Path="~/Scripts/WebForms/GridView.js" />
<asp:ScriptReference Name="DetailsView.js" Assembly="System.Web" Path="~/Scripts/WebForms/DetailsView.js" />
<asp:ScriptReference Name="TreeView.js" Assembly="System.Web" Path="~/Scripts/WebForms/TreeView.js" />
<asp:ScriptReference Name="WebParts.js" Assembly="System.Web" Path="~/Scripts/WebForms/WebParts.js" />
<asp:ScriptReference Name="Focus.js" Assembly="System.Web" Path="~/Scripts/WebForms/Focus.js" />
<asp:ScriptReference Name="WebFormsBundle" />
<%--Site Scripts--%>
</Scripts>
</asp:ScriptManager>
<div class="navbar navbar-inverse navbar-fixed-top">
<%-- navbar css styling is done in the 'bootstrap.css' file --%>
<div class="container">
<div class="navbar-header">
<button type="button" class="navbar-toggle" data-toggle="collapse" data-target=".navbar-collapse">
<span class="icon-bar"></span>
<span class="icon-bar"></span>
<span class="icon-bar"></span>
</button>
<a class="navbar-brand" runat="server" href="~/">
<asp:Image ID="logo" runat="server" ImageUrl="~/images/logo.png" AlternateText="logo" style="width:15%; height:auto;"></asp:Image>
<span>CompanyX</span>
</a>
</div>
<div class="navbar-collapse collapse">
<ul class="nav navbar-nav">
<li><a runat="server" href="~/About">About</a></li>
<li class="dropdown">
<a class="dropdown-toggle" data-toggle="dropdown" runat="server" href="#">Products<span class="caret"></span></a>
<ul class="dropdown-menu">
<li><a runat="server" href="~/Product-1">Product-1</a></li>
<li><a runat="server" href="~/Product-2">Product-2</a></li>
</ul>
</li>
<li><a runat="server" href="~/Photos">Photos</a></li>
<li><a runat="server" href="~/Contact">Contact</a></li>
</ul>
</div>
</div>
</div>
<div class="container body-content">
...
</div>
</form>
</body>
我在"bootstrap.css"文件中应用的更改:
.navbar-nav > li > a {
margin-top: 10px;
padding-top: 10px;
padding-bottom: 10px;
line-height: 20px;
font-size: medium;
}
我在这里添加了一个margin-top: 10px;
,因此navbar-collapse collapse
中的项与navbar-brand
中的徽标和文本水平对齐。
我希望这对本地主机和发布的网站都有效。
我还尝试将下面的代码添加到asp:ContentPlaceHolder ID="Stylesheets"
中,作为对bootstrap.css
文件的额外引用,但也没有成功。
<link rel="stylesheet" runat="server" href="/Content/bootstrap.css" type="text/css" />
非常感谢您的意见。
下面您可以看到可视化结果:
更新:
实际上,在查看页面源代码时,它看起来像是发生了一些奇怪的事情。
我的代码呈现CSS在我的网站上。主:
在localhost上,源代码如下所示:
在发布的网站上,源代码如下所示:
我刚刚意识到我不需要ContentPlaceHolder ID="Stylesheets"
,我现在已经从代码中删除了它,但是问题仍然存在。
有没有想过为什么这是不同的?
2条答案
按热度按时间cqoc49vn1#
这背后可能有多种原因,我猜是:
1.这可能是因为您的浏览器缓存了CSS文件,并正在使用该文件。请尝试清除浏览器缓存,如果使用Firefox或Chrome硬加载页面,请使用Ctrl + Shift + R。
1.或者可能是因为您的Visual Studio没有上载CSS文件。请尝试通过FileZilla手动替换该文件。
1.可能在标题中或在您指定的更改之后提到了一个样式,该样式覆盖了您的更改。检查在应用所需的更改之后样式是否没有更改。
1.检查
!important
标志是否包含了一些样式属性。如果有,这意味着它优先于你的普通样式,即使你在修改之后指定了它们。0sgqnhkj2#
对我来说,最简单的解决方案是删除css捆绑。
我删除了这行代码:
<webopt:bundlereference runat="server" path="~/Content/css" />
并删除了 Bundle.config 文件。在我的
<head>
标签中,我现在有以下内容: