Retrieving the Password for a User in Asp.net

If you’re using the Membership API in asp.net and need to retrieve a user’s password, you can do so by doing this:

MembershipUser user = Membership.GetUser("username"); ...

Note: Cross posted from Heartysoft.com.
Permalink

No Comments