Search

You searched for the word(s): userid:666710

Matching Posts

  • Re: Your login attempt was not successful , on localhost or through internet

    I was pulling my hair out because of this also. I never solved the problem but I implemented a work around that seems to work so far: Protected Sub Login1_Authenticate( ByVal sender As Object , ByVal e As System.Web.UI.WebControls.AuthenticateEventArgs) Handles Login1.Authenticate 'i don't know why but e.Authenticated is always false so I 'have implemented this work around: If Membership.ValidateUser(Login1.UserName, Login1.Password) Then FormsAuthentication.RedirectFromLoginPage(Login1.UserName
    Posted to Personal Site Starter Kit (Forum) by danhixon on 7/1/2006
  • Re: Troubleshooting the login control? (work around)

    I implemented a work around that seems to work so far: Protected Sub Login1_Authenticate( ByVal sender As Object , ByVal e As System.Web.UI.WebControls.AuthenticateEventArgs) Handles Login1.Authenticate 'i don't know why but e.Authenticated is always false so I 'have implemented this work around: If Membership.ValidateUser(Login1.UserName, Login1.Password) Then FormsAuthentication.RedirectFromLoginPage(Login1.UserName, False ) End If End Sub I hope to find out why the login control isn't working
    Posted to Security (Forum) by danhixon on 7/1/2006
  • Re: Troubleshooting the login control?

    I am experience this problem too! VERY FRUSTRATING! Protected Sub Login1_Authenticate( ByVal sender As Object , ByVal e As System.Web.UI.WebControls.AuthenticateEventArgs) Handles Login1.Authenticate If Membership.ValidateUser(Login1.UserName, Login1.Password) Then Label1.Text = "user IS valid!" End If If e.Authenticated Then Response.Redirect( "admin/managecategories.aspx" ) End If End Sub The login control says "Your login attempt was not successful. Please try again." and my Label1.Text says
    Posted to Security (Forum) by danhixon on 7/1/2006
Page 1 of 1 (3 items)