Posted on: 3/6/2014 1:54:08 PM | Views : 586

Hi,
How to enable
1: User should able to reset his password by clicking on Forgot password option
2: Admin also should have rights to change/reset user password.
How to achive both.
In my web.config
<membership defaultProvider="AspNetSqlMembershipProvider" userIsOnlineTimeWindow="15"> <providers> <clear/> <add connectionStringName="Connection" enablePasswordRetrieval="false" enablePasswordReset="true" requiresQuestionAndAnswer="true" applicationName="WebApplication1" requiresUniqueEmail="true" passwordFormat="Hashed" maxInvalidPasswordAttempts="5" minRequiredPasswordLength="7" minRequiredNonalphanumericCharacters="0" ...

Go to the complete details ...