I need to give a user the ability to change the email of any other user listed in the aspnetdb. I can easily change their password, but I can't get the email to change. I thought that usr.email = "email@email.co m" would work, but it doesn't. It doesn't error, but it also doesn't change anything.
This is the basic code:
This is the basic code:
Code:
Dim usr As MembershipUser = Membership.GetUser(userName) usr.Email = txtEmail.Text
Comment