i am developing a small project in my localhost.
But i am a little problem, i have this ;
<system.web>
<authentication mode="Forms">
<forms loginUrl="Login.aspx"/>
</authentication>
<authorization>
<deny users="?"/>
</authorization>
</system.web>
<location path="RecoverPassword.aspx">
<system.web>
<authorization>
<allow users="*"/>
</authorization>
</system.web>
</location>
but when i go to login.aspx (i have a link to go to RecoverPassword), and when i click it always go to login.aspx.
What i am doing wrong?
Looks to me like you’re doing it right. Only thing I’d guess is that somewhere you’ve misspelled something – try double-checking that the link really takes you to
RecoverPassword.aspx.