PasswordRecovery control problem
ASP.NET PasswordRecovery control usually asks 2 questions for recovering users pa开发者_JAVA百科ssword. First the username and then the secret question. Is there any way where we can make it to ask only one question - username only?
Assuming you are using the built in PasswordRecovery
control and Membership
In the web.config file, you can specify if the security question is required. Set this to false, then all the user should have to do is enter their username.
See here http://www.asp.net/security/tutorials/recovering-and-changing-passwords-vb
精彩评论