daniel50096230
August 21st, 2010, 02:59 AM
Hi, I have authentication mode in my web.config:
<authentication mode="Forms">
<forms name="123" path="/" loginUrl="Login.aspx" protection="All" timeout="900">
</forms>
</authentication>
<authorization>
<deny users="?"/>
</authorization>
It means that everyone must login before they can do anything. However, in my login page, there is a hyperlink that will link to the forgot password page. When I trying to click the hyperlink, it won't goes to forgot password page but it still remain in login page. I suspect that it could be caused by the authentication mode. Is there anyway for me to temporary disable the authentication mode when I click the hyperlink?
<authentication mode="Forms">
<forms name="123" path="/" loginUrl="Login.aspx" protection="All" timeout="900">
</forms>
</authentication>
<authorization>
<deny users="?"/>
</authorization>
It means that everyone must login before they can do anything. However, in my login page, there is a hyperlink that will link to the forgot password page. When I trying to click the hyperlink, it won't goes to forgot password page but it still remain in login page. I suspect that it could be caused by the authentication mode. Is there anyway for me to temporary disable the authentication mode when I click the hyperlink?