Hi All
I need the whenever user is entering password in TextBox it will encrypt that password and stored in database and at the time of logon the user will provide his plain passoword and it will retrive from database match with the user provided password and match.. if it
is matching then allow to next page..
and also if user forget password able to sent password to mail
Loading
RohitPosted Jan 25, 2012, 2:31 AM
One thing you can do is:
Take hash of the Password and store it in database.
Then when a user logs in... convert the user input passwrd into hash and match with what is present in database.
This will result in more security.
and for mailing a password: you can simply generate a random number using contnts of username or datetime and send it as new password.
Suthish NairPosted Jan 30, 2011, 1:27 PM
So other members can easily find the answers.
Bharat BhushanPosted Jan 29, 2011, 6:57 AM
http://useofaspdotnet.blogspot.com/2011/01/how-to-encrypt-password-and-store-it-in.html
Mahesh ChandPosted Jan 29, 2011, 6:55 AM
Krishna GaradPosted Jan 28, 2011, 11:13 PM
Check out my article which suits your need surely.
Encrypt & Decrypt In Asp.Net