Hi,
I am registering an user thru coding
Code Sample:
NewUser.Username = txtEmail.Text
NewUser.Membership.Password = UserController.GeneratePassword()
Dim createStatus As UserCreateStatus = UserController.CreateUser(NewUser)
User is also registered properly. I have verified the database also.
If I try to logon with this username and password, I am getting the error message as "Login Failed." (Validateuser function is returning false)
Can you let me know a way to solve this?
Thanks,
Uma