CodeGuru Home VC++ / MFC / C++ .NET / C# Visual Basic VB Forums Developer.com
Results 1 to 2 of 2
  1. #1
    Join Date
    Jan 2009
    Posts
    177

    Authentication Mode Issue

    Hi, I have authentication mode in my web.config:


    Code:
        <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?

  2. #2
    Join Date
    Jul 2001
    Location
    Sunny South Africa
    Posts
    11,284

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

Featured