Link to home
Start Free TrialLog in
Avatar of ThePrettyGeek
ThePrettyGeekFlag for United States of America

asked on

How can I get my web.config file to ignore my css and images folder

Ive got forms authentication kinda working in an ASP app but it wants to protect everything and there is a css folder and an images folder, both of which, because of the authentication are being protected to the point that when I run the site in Visual Studio all I see is white background with the logon page the formating and the images do not show up.

Im attaching that part of my web.config file in the code section(slightly edited for security reasons)

Ive scowered the MSDN sites and googled all over the place and this authentication is driving me nutts.

<authentication mode="Forms">
     <forms name=".ADAuthCookie" loginUrl="Login.aspx"  protection="All" defaultUrl="newpage.aspx" domain="testsite.com" timeout="90" path="/" />
    </authentication>
 
    
   <authorization>
      <deny users="?" />
      <allow users="*" />
    </authorization>

Open in new window

ASKER CERTIFIED SOLUTION
Avatar of PagodNaUtak
PagodNaUtak
Flag of Philippines image

Link to home
membership
This solution is only available to members.
To access this solution, you must be a member of Experts Exchange.
Start Free Trial
Here is the detail explanation...
<system.web>

   <authorization>

       <deny users="?"/>

   </authorization>

</system.web>

<location path="/images">

    <system.web>

        <authorization>

            <allow users="*"/>

        </authorization>

    </system.web>

</location>
@lalitgada,

Hi! I already suggested that, please see my post.

Before posting please check if what you are posting is already suggested!
Avatar of ThePrettyGeek

ASKER

There was another post that said here is the explanation and I would love to still have that link as it did not show up or I didn't see it, so please teacher send it again.

Cristy