it is my web.config file..
<authentication mode="Forms">
<forms name=".ASPXFORMSDEMO" loginUrl="index.aspx" protection="All" path="/" timeout="10" />
</authentication>
<authorization>
<deny users="?"/>
<allow users="*"/>
</authorization>
in my index.aspx(it is like my home page),i have registration ,help...etc are there in that page.i want access those funcationalities with out authentication.i tried like this..but not working..
<location path="index.aspx"> // it is my login page.. and other funcationalities like registration....also there ...
<system.web>
<authorization>
<allow users="*" />
</authorization>
</system.web>
</location>