Änderungen zum Versuch des Bugfixings des Buttons bei der ForgotPW.aspx-Form

This commit is contained in:
ja
2021-10-12 16:47:47 +02:00
parent 690b67ac9d
commit e757e71702
4 changed files with 6 additions and 8 deletions

View File

@@ -14,15 +14,13 @@ Partial Class login_ForgotPW
Protected Sub btn_Send_Click(sender As Object, e As EventArgs)
Dim username As String
Dim password As String
Dim password As String = String.Empty
Dim email As String
Dim tokenname As String
Dim tokenname As String = String.Empty
Try
username = txt_Username.Text
password = String.Empty
email = txtEmail.Text
tokenname = ""
Catch Excep As MissingFieldException
Catch Excep As Exception
MsgBox("Error05: " + Excep.Message)
End Try