On my admin page, I'm trying to get UserName, Password and Email of users to re-populate the controls when the administrator clicks on the username from the gridview. It seems I canβt get the password, because I need a parameter (password) that I canβt find.
I am using ASPNETDB database stored procedures.
For Each usr As MembershipUser In Membership.GetAllUsers() Debug.Print(usr.Email) Debug.Print(usr.UserName) Debug.Print(usr.GetPassword("")) 'This line errors out Next
Troys source share