Question 1 - I'm wanting to give the user the ability to reset their password only without an email and generated password. The user verifies themselves against our internal database by a custom form a wrote. Then, I'd like to prompt them for username and security q&a. I don't know how to do the security QA so i decided to customize the password recovery control. I don't want it to send an email with a new password. Rather, if they get the username and question right, i want to send them to a password reset page.
Is there any way to ask them for the security question and compare either by writing custom code or using a prebuilt component. Also, how do I set the password once they reset it?
Question 2- I'm working on a 'Forgot Username'. It will verify against our database firstly. Based on what they enter, I'll be able to match up and find the username and userid in the forms authentication database. I'd like to ask them the security question but don't know how to create the hash from what they enter to compare what's in the aspnet database for the user. Is there a way to do this?
thanks!!!