Hi. I have this on my web.config file:
<authentication mode="Forms">
<forms loginUrl="login.aspx" defaultUrl="Venues.aspx" />
</authentication>
<authorization>
<deny users="?" />
<allow users="*" />
</authorization>
I only whant to alow authenticated users to my pages. The problem is the first time that I go to the login page I don't have any images or style on my page. I think this is because I also denied access to the .jpeg .css files. I think I can solve this issue in IIS, but I'm just in Dev. I only have VS 2008 and no IIS.
Is it possible for me to allow access to the imgs dir for the anonymous user in the web.config?!
Thank you!