Hello.
I have a users database and the passwords in the users table are stored in
SHA1 mode, they are encrypted in other ways.
Now I would like to add an admin page where I could view all the users and
their real passwords. If they wrote asp.net when they signed up I want to
see that in a datagrid. Im able to get the values to the datagrid but how
do i decrypt them in the grid. As it is now all I see is the decrypted
version of the password. I know there is a method for this:
FormsAuthentication.Decrypt . I just dont know how to do it because the
datagrid gets its data from a dataset.
Is this possible if you know what I mean?