I have attempted to add error handling for if a user inputs an invalid username/password into a webform. It is checking the username and password against an Access Database and if the username and password do not match generate an email to email Admin of
the issue. However, if an invalid username/password is entered once the Enter Site button is pressed it throws an error of IndexOutOfRangeException was unhandled. on the below line of code
return ((tblAuthorizedUserRow)(this.Row[index]));
...
Go to the complete details ...