Hello,
After I added authentication into web.config, the css is lost in my login page. If I remove the authentication, the css in the login page comes back.
Does anyone know this problem? Your help will be highly appreciated.
In web.config:
<authentication mode="Forms">
<forms loginUrl="login.aspx" name=".ASPXFORMSAUTH" path="/">
</forms>
</authentication>
<authorization>
<deny users="?" />
</authorization>
And I use theme:
<system.web>
<pages masterPageFile="~/BellSupportSite.Master" theme="BellSupport" styleSheetTheme="BellSupport">
and I put a default css file in the App_theme folder
Thank you.