我有一个主页,我想为特定页面添加CSS。因此,在主页的顶部,我包含了以下代码:
<asp:ContentPlaceHolder id="Header" runat="server">
</asp:ContentPlaceHolder>
在aspx页面中,我包括了以下几行:
<asp:Content ID="Content1" ContentPlaceHolderID="Header" Runat="Server">
<link rel="stylesheet" href="default.css" type="text/css"/>
<link rel="stylesheet" href="https://stackpath.bootstrapcdn.com/bootstrap/4.1.1/css/bootstrap.min.css" />
</asp:Content>
但是,我的问题是,删除第二个链接rel时,一切正常。如果我放回原处,则由母版页管理的CSS代码无法正常工作。
但是,我的问题是,删除第二个链接rel时,一切正常。如果我放回原处,则由母版页管理的CSS代码无法正常工作。
这是我的母版代码,很抱歉格式化
<html xmlns="http://www.w3.org/1999/xhtml">
<head runat="server">
<link rel="SHORTCUT ICON" href="favicon.ico"/>
<script type="text/javascript" src="https://www.google.com/jsapi"></script>
<link rel="stylesheet"
href="http://code.jquery.com/ui/1.11.2/themes/smoothness/jquery-ui.css" />
<script type="text/javascript">
google.load("jquery", "1.3");
google.setOnLoadCallback(function() {});</script>
<asp:ContentPlaceHolder id="Header" runat="server"/>
</head>
<body id="body_" onload="">
<form id="form1" runat="server">
<div id="container">
<div id="mastercontent">
</div>
</div>
</body>
我需要帮助修复它。