How can I reset a password for a user who forgot both the password and the answer to the password reset question? I'm using ASP.Net membership.
|
feedback
|
|
Assuming your membership provider ("AspNetSqlMembershipProvider") in Web.config has Then you can create an action that would use the second provider to allow an administrator to reset the password without requiring a correct answer to the security question, as in the following snippet:
Let me know if you need more details. | ||||
|
feedback
|
|
In an administrative page on your site, you can simply reset a password by first getting a hold of the user:
You'll now have the automatically generated password in 'newPassword'. You could send this in an email to the user. There are other ways to accomplish this as well. The membership database is pretty wide open, so you could come up with entry systems to get the desired new password yourself and place the hashed value in there. Please comment if you need more details. It doesn't have to be difficult. | |||
|
feedback
|