HI,
I'm working with a system that requires authentication. The authentication is made against the AD and it's working fine.
However, ONE of the pages (not the login page) does not require authentication.
The IIS is set to allow Anonymous Users, and the Web.config is set as below:
<authentication mode="Forms">
<forms loginUrl="login.aspx" name="MyApplication" path="/" />
</authentication>
<identity impersonate="true" />
<authorization>
<deny users="?"/>
<allow users="*"/>
</authorization>
My problem is that a page called "noAccess.aspx" does not require authentication.
How do I set this up?
Regards,
Paulo Santos
http://pjondevelopment.50webs.com