I am working on a site that uses forms authentication. Works like it should BUT I now want to add a link to my login form to allow a user to retrieve a lost password. How can I link to this lost password page and bypass the form authentication?
Printable View
I am working on a site that uses forms authentication. Works like it should BUT I now want to add a link to my login form to allow a user to retrieve a lost password. How can I link to this lost password page and bypass the form authentication?
Create a new subdirectory to put the password retrieval page in, and add a web.config file to that directory:
Code:<?xml version="1.0" encoding="UTF-8" ?>
<configuration>
<system.web>
<authorization>
<allow users="*" />
</authorization>
</system.web>
</configuration>
Well thats easy enough! Thanks.