Author: gotmike | Posted on: 7/21/2009 8:36:01 PM | Views : 1064

i set up the membership store and i am using an access database at this point.  everything is working, except now i want to add the ability to retrieve a lost password.  when i try to edit the web.config file, i get an error about the passwords being hashed.  here is the portion of my web.config:
<membership defaultProvider="AccessMembershipProvider"> <providers> <clear/> <add name="AccessMembershipProvider" type="Samples.AccessProviders.AccessMembershipProvider, ASP.NET Access Providers1" connectionStringName="AccessFileName" enablePasswordRetrieval="false" enablePasswordReset="false" requiresUniqueEmail="false" requiresQuestionAndAnswer="false" minRequiredPasswordLength="1" minRequiredNonalphanumericCharacters="0" ...

Go to the complete details ...