Results 1 to 3 of 3

Thread: Using forms authentication

  1. #1

    Thread Starter
    Hyperactive Member
    Join Date
    Dec 2002
    Location
    The Big D
    Posts
    310

    Resolved Using forms authentication

    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?
    Last edited by VBGuy; Feb 19th, 2005 at 07:30 PM.

  2. #2
    Addicted Member
    Join Date
    Sep 2004
    Posts
    133

    Re: Using forms 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>

  3. #3

    Thread Starter
    Hyperactive Member
    Join Date
    Dec 2002
    Location
    The Big D
    Posts
    310

    Re: Using forms authentication

    Well thats easy enough! Thanks.

Posting Permissions

  • You may not post new threads
  • You may not post replies
  • You may not post attachments
  • You may not edit your posts
  •  



Click Here to Expand Forum to Full Width