Click to See Complete Forum and Search --> : how to avoid one form from Authentication plz reply soon..


nimmyjo
01-22-2007, 02:21 AM
Hi,
I am doing one login page in asp.net.I need to know how to exclude one page of the application alone from authentication.As authentication is applicable to all forms in application.plzzz somebody reply soon on this issue..

RobDavid
01-22-2007, 11:41 AM
The following code example demonstrates how to allow an anonymous user to gain access the anonymous.aspx page.

Copy Code
<configuration>
<location path="anonymous.aspx">
<system.web>
<authorization>
<allow users="?"/>
</authorization>
</system.web>
</location>
</configuration>