How to use ASP.NET Authorization Yet Permit Access to .css Files?
        Posted  
        
            by Chaitanya
        on Stack Overflow
        
        See other posts from Stack Overflow
        
            or by Chaitanya
        
        
        
        Published on 2010-01-27T02:51:36Z
        Indexed on 
            2010/03/11
            18:24 UTC
        
        
        Read the original article
        Hit count: 362
        
<authentication mode="Forms">
      <forms loginUrl="Login.aspx"/>
</authentication>
<authorization>
      <deny users="?"/>
</authorization>
I am using forms authentication, and when i place the arguments cited above, the css formatting I have done for the whole document is not being implemented, it's vanishing. what should i be doing so that the CSS remains intact.
© Stack Overflow or respective owner