0

我正在使用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>
4

5 回答 5

2

试试这个

   <location path="~/stylesheets">
        <system.web>
            <authorization>
                <allow users="*" />
            </authorization>
        </system.web>
   </location>

请使用您的样式表路径更新路径....参考这篇文章

http://forums.asp.net/t/1678658.aspx/1

于 2012-04-09T06:49:11.197 回答
0

快速提问,你能检查一下css文件是否真的被解析了吗?

如果您使用的是 chorme,则可以使用开发人员工具并使用网络部分来查看所有通过的请求。

如果您使用的是 firefox,请使用 firebug。

谢谢

于 2012-04-09T06:20:16.683 回答
0

查看源代码(如果使用 chrome/firefox,通常按CTRL+U)并找到它的位置href="Styles/Login.css",您应该可以单击它作为样式表的链接。您应该首先确保您实际上正确链接到它,它是否正确加载?

于 2012-04-09T06:23:40.347 回答
0

尝试

href="@Url.Content("~/Styles/Login.css")"

代替

href="Styles/Login.css"

如果您使用的是 Visual Studio,智能感知(自动完成)将支持您找到确切的位置。只需在打开 Url.Content() 方法的括号后按 Ctrl+Space 即可。

于 2012-04-09T06:24:06.807 回答
0

我检查了你的样品,完全没有问题。控制“登录框”确实获得了 css 样式。请检查您的 css 文件是否在正确的位置。

href="Styles/Login.css"
于 2012-04-09T06:32:36.230 回答