In my application the new users are registered by Admin. A temporary password will be sent and required to be changed after logging in for first time. Now want to implement security question and answer feature so that user can retrieve their password .
Current web.config setting is
<membership defaultProvider="DefaultMembershipProvider">
<providers>
<add name="DefaultMembershipProvider" type="##"
connectionStringName="DefaultConnection" applicationName="/" enablePasswordRetrieval="false" enablePasswordReset="true"
requiresQuestionAndAnswer="false" requiresUniqueEmail="false"
maxInvalidPasswordAttempts="5" passwordAttemptWindow="10"
minRequiredPasswordLength="8" minRequiredNonalphanumericCharacters="1" />
</providers>
</membership>
Read through lot pf post on this topic.I have myaccount page in the application to reset the password ,Can i implement MembershipUser.ChangePasswordQuestionAndAnswer to make the user to choose their question and answer in the same page.And use password recovery control for forgotten password ??
Or any other suggestion
Thanks