I am having an ASP.net Membership I need to verify the User Question and Answer.
I dont need to use Password Because its Hashed we cannot validate it
MembershipUser msUser = Membership.GetUser(‘Rasel’);
thanks, Lalithambigai
Sign Up to our social questions and Answers Engine to ask questions, answer people’s questions, and connect with other people.
Login to our social questions & Answers Engine to ask questions answer people’s questions & connect with other people.
Lost your password? Please enter your email address. You will receive a link and will create a new password via email.
Please briefly explain why you feel this question should be reported.
Please briefly explain why you feel this answer should be reported.
Please briefly explain why you feel this user should be reported.
Ask the user a question and compare their answer with their previously provided answer?
However, a hashed password doesn’t prevent you from verifying it. Simply hash the user’s response and compare the hash with the stored password hash. Note that the hashing scheme may contain salt, or initialization characters to prevent dictionary attacks.