Hi there,
By default, passwords are stored as hashes in the database in an ASP.NET 2 app. Hashing is different from encrypting: the latter is reversible, the former isn't.
So, instead of your clear text password, you get a new one instead that looks a little odd. There is no way to retrieve the old password from the hash again.
You can configure your application for clear text passwords through the web.config. However, that won't affect existing passwords.
Cheers,
Imar
---------------------------------------
Imar Spaanjaars
Everyone is unique, except for me.
Author of
ASP.NET 2.0 Instant Results and
Beginning Dreamweaver MX / MX 2004