Link to home
Start Free TrialLog in
Avatar of JT_SIRO
JT_SIRO

asked on

How do I get Password from Membership Object

Does the MembershipUser object contain the users Password?  I need to display usernames and passwords on an admin page and can't seem to find it.

            MembershipUtil MembershipUtil = new MembershipUtil();
            MembershipUtil.Username = usr.UserName;

When I try MembershipUtil.Username = usr.Password;  - It fails because there is no Password.  Please advise.  thx -


Avatar of MISOperations
MISOperations
Flag of United States of America image

You cannot view users passwords, they are encrypted for the protection of the user.
Avatar of JT_SIRO
JT_SIRO

ASKER

I was hoping I wouldn't get that response.  So what am I supposed to do?  I need to be able to look up passwords easily.  
The users need to remember their information, backup the system as a whole, you cannot access their passwords though.
ASKER CERTIFIED SOLUTION
Avatar of Carl Tawn
Carl Tawn
Flag of United Kingdom of Great Britain and Northern Ireland image

Link to home
membership
This solution is only available to members.
To access this solution, you must be a member of Experts Exchange.
Start Free Trial