K
Kevin
Hello my name is Kevin
i have a problem with loading a css file for my Login.aspx
when i remove the <Authentication> part below
my layout is shown in my login page
otherwise it doenst load the CSS, what could be the problem ?
heres my css file :
A
{font-size: small; color: #7C6F57; font-family: verdana; cursor: crosshair;
text-decoration: none;
}
A:hover
{font-size: small; color: #7C6F57 ; font-family: verdana; text-decoration:
Underline; cursor: crosshair;
}
A:link
{font-size: small; color: #7C6F57; font-family: verdana; cursor: crosshair;
}
A:visited
{font-size: small; color: #7C6F57; font-family: verdana; cursor: crosshair;
}
body
{
cursor: crosshair;
background-image: url(Images/Background_Repeat.jpg);
background-attachment: fixed;
background-repeat: repeat-x;
background-color: white;
}
..Item
{
border-right: black 1px solid;
border-top: black 1px solid;
border-left: black 1px solid;
border-bottom: black 1px solid;
background-color: #e0e0e0;
cursor:crosshair;
}
..Gridview
{
border-right: black 1px solid;
border-top: black 1px solid;
border-left: black 1px solid;
border-bottom: black 1px solid;
cursor: crosshair;
background-color: Silver;
font: menu;
}
i placed in my root folder in my solution explorer
i placed this in my web.config:
<authentication mode="Forms" >
<forms loginUrl="login.aspx"
name=".ASPXFORMSAUTH"
slidingExpiration ="true"></forms>
</authentication>
<authorization>
<deny users="?" />
</authorization>
Kind Regards KEVIN
i have a problem with loading a css file for my Login.aspx
when i remove the <Authentication> part below
my layout is shown in my login page
otherwise it doenst load the CSS, what could be the problem ?
heres my css file :
A
{font-size: small; color: #7C6F57; font-family: verdana; cursor: crosshair;
text-decoration: none;
}
A:hover
{font-size: small; color: #7C6F57 ; font-family: verdana; text-decoration:
Underline; cursor: crosshair;
}
A:link
{font-size: small; color: #7C6F57; font-family: verdana; cursor: crosshair;
}
A:visited
{font-size: small; color: #7C6F57; font-family: verdana; cursor: crosshair;
}
body
{
cursor: crosshair;
background-image: url(Images/Background_Repeat.jpg);
background-attachment: fixed;
background-repeat: repeat-x;
background-color: white;
}
..Item
{
border-right: black 1px solid;
border-top: black 1px solid;
border-left: black 1px solid;
border-bottom: black 1px solid;
background-color: #e0e0e0;
cursor:crosshair;
}
..Gridview
{
border-right: black 1px solid;
border-top: black 1px solid;
border-left: black 1px solid;
border-bottom: black 1px solid;
cursor: crosshair;
background-color: Silver;
font: menu;
}
i placed in my root folder in my solution explorer
i placed this in my web.config:
<authentication mode="Forms" >
<forms loginUrl="login.aspx"
name=".ASPXFORMSAUTH"
slidingExpiration ="true"></forms>
</authentication>
<authorization>
<deny users="?" />
</authorization>
Kind Regards KEVIN