我正在使用Asp.Net/C#
。目前我正在登录页面上工作,我login page
不依赖于Master Page
,因此Stylesheet
我在 head 部分中设置了指向我的链接
<link rel="stylesheet" href="Styles/Login.css" type="text/css"/>
问题是样式对登录页面上的控件没有任何影响。这是我的 css 文件
body
{
font-family: "Helvetica Neue", Helvetica, Arial, sans-serif;
font-size:75%;
}
#loginbox
{
position:fixed;
background-color:#9cc3f7;
border:2px solid #ddd;
height:200px;
width:300px;
top:50%;
margin-left: -130px;
margin-top: -100px;
left:50%;
}
这是登录页面
<%@ Page Language="C#" AutoEventWireup="true" CodeBehind="HomeLogin.aspx.cs" Inherits="CwizBankApp.HomeLogin" %>
<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd">
<html xmlns="http://www.w3.org/1999/xhtml" >
<head runat="server">
<title>Comwizard Systems | Login</title>
<link rel="stylesheet" href="Styles/Login.css" type="text/css"/>
</head>
<body>
<form id="form1" runat="server">
<div id="loginbox">
<span>UserName:</span><asp:TextBox ID="txtUserName" runat="server"></asp:TextBox> <br />
<span style="margin-left:6px;">Password:</span><asp:TextBox ID="txtPassword" runat="server" TextMode="Password"></asp:TextBox><br />
<asp:Button ID="cmdLogin" runat="server" Text="Login" onclick="cmdLogin_Click" />
</div>
</form>
</body>
</html>
任何人都可以帮我解决这个问题。任何建议都受到高度赞赏。谢谢
最后问题已经解决了在web.config中添加这个解决了它
<location path="~/Styles">
<system.web>
<authorization>
<allow users="*" />
</authorization>
</system.web>
</location>