vote up 2 vote down star

When developing (works fine live) the pages for our website don't pick up the correct CSS until the user has authenticated (logged on).

So the Logon and Logoff forms look bad, but once inside the site, the CSS works again.

I'm guessing it's some kind of authentication issue? Haven't really looked into it too much because it's only when working on dev so not a huge issue, but would be nice to know how to fix it.

flag

3 Answers

vote up 6 vote down check

Check and make sure that the CSS file itself is not in an area that you are securing. You can manually exclude the file via the web.config if needed.

link|flag
1  
Manually exclude by adding the following in the <Configuration> section: <location path="css"> <system.web> <authorization> <allow users="*"></allow> </authorization> </system.web> </location> – KiwiBastard Sep 11 '08 at 1:14
This is good. Then how is it working in your production evironment? You should have the same problem there unless this section is missing in your dev web.config – Gulzar Sep 11 '08 at 1:21
I have this exact same issue - login page is unstyled on dev and fine on production. web.config is exactly the same except for connection strings and debug settings. This solution didn't solve the problem for me. – Adam Pope Aug 7 at 10:16
Correction: Had a dumb moment, it does work if you specify the whole path e.g. path="App_Themes/Theme" or path="App_Themes/Theme/file.css" – Adam Pope Aug 7 at 10:20
vote up 1 vote down

Can you try using a tool like Fiddler or HttpWatch and check if a request actually goes for the .css file from the login page. Verify the return codes are 200. Could be because of relative path issue in your dev box.

link|flag
vote up 2 vote down

To allow an unauthenticated user to see your .css files (or any other file/directory) you can add a location element to your web.config file pointing to the .css file.

<configuration>
   <system.web>
      // system.web configuration settings.
   </system.web>
   <location path="App_Themes/Default/YourFile.css">
      <system.web>
         <authorization>
            <allow users="*"/>
         </authorization>
      </system.web>
   </location>
</configuration>

link|flag

Your Answer

Get an OpenID
or

Not the answer you're looking for? Browse other questions tagged or ask your own question.