serkan sendur 821 Postaholic Banned

Modify the web.config as follows :

<configuration>
<system.web>
<authentication mode="Forms" />
</system.web>
<location path="myRestrictedPage.aspx">
<system.web>
<authorization>
<deny users="?"/>
<allow users="*" />
</authorization>
</system.web>
</location>
</configuration>