Reihenfolge Code Login Button

This commit is contained in:
ja
2021-10-11 08:54:24 +02:00
parent e7c288b029
commit 34981931ab

View File

@@ -41,12 +41,11 @@ Partial Class login_login_TEST
Login1.FailureText = "Account has not been activated."
Exit Select
Case Else
FormsAuthentication.RedirectFromLoginPage(User.Identity.Name, True)
Session.Add("test", Login1.UserName)
CustomerIDTextBox = Login1.FindControl("CustomerID")
Session.Add("CustomerID", CustomerIDTextBox.Text)
Session.Add("PW", Login1.Password)
FormsAuthentication.RedirectFromLoginPage(User.Identity.Name, True)
'FormsAuthentication.SetAuthCookie(Login1.UserName, True)
'Response.Redirect("../Customers/CustomsAviso.aspx")
Exit Select
@@ -67,6 +66,6 @@ Partial Class login_login_TEST
End Sub
Protected Sub CustomerID_TextChanged1(sender As Object, e As EventArgs)
valid_getNumberInput.Validate()
' valid_getNumberInput.Validate()
End Sub
End Class