I'm trying to set up password reset on my webpage.
The passwords is salted, so it needs to be reset no retrieved.
I keep getting the error: Attribute not recognized 'enablePasswordRetrieval'
but what I read indicates that setting needs to be false, as well as enablePasswordReset = "true"
here is my membership provider.
<membership defaultProvider="MyADMembershipProvider">
<
providers><add name="MyADMembershipProvider"
type="System.Web.Security.ActiveDirectoryMembershipProvider, System.Web, Version=2.0.0.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a" connectionStringName="ADConnectionString"
connectionUsername=<removed>
connectionPassword=<removed>
attributeMapUsername="SAMAccountName"
requiresQuestionAndAnswer="true"
enablePasswordRetrieval="false"enablePasswordReset="true"
attributeMapPasswordQuestion="PwdQuestion"
attributeMapPasswordAnswer="PwdAnswer" attributeMapFailedPasswordAnswerCount="FailedPwdCount"
attributeMapFailedPasswordAnswerTime="FailedPwdAnswerTime"
attributeMapFailedPasswordAnswerLockoutTime="FailedPwdLockOutTime"
/>
</providers>
</
membership>
Anyone have any idea what I'm doing wrong?
Any help is greatly appreciated.
Thanks,
Eric-