DatabaseDude
Programmer
Membership.CreateUser takes arguments for username, password, email, password question, and password answer. However, in the current project, we're not using the security question and answer.
Does it matter what is entered for the question & answer? They're required, apparently.
This works ...
... but I didn't want it to come back and bite me at some point in the future!
Thanks in advance!
Does it matter what is entered for the question & answer? They're required, apparently.
This works ...
Code:
Dim Status As MembershipCreateStatus
Dim User As MembershipUser =
Membership.CreateUser(txtUserName.Text, _
txtPassword.Text, txtEmail.Text, _
"something", "else", True, Status)
... but I didn't want it to come back and bite me at some point in the future!
Thanks in advance!