Hi,
Have done some research on this forum I have worked out how to change the membership configuration settings in web.config to adjust the required password length and minimum number of non_alpha numeric characters.
This works perfectly when I create a new user and they can login fine. The problem I've got is all the users that were created before I edited web.config are no longer able to login? Any help would be much appreciated. Thanks.
Have done some research on this forum I have worked out how to change the membership configuration settings in web.config to adjust the required password length and minimum number of non_alpha numeric characters.
Code:
<membership>
<providers>
<clear/>
<add name="AspNetSqlMembershipProvider" type="System.Web.Security.SqlMembershipProvider, System.Web, Version=2.0.0.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a" connectionStringName="LocalSqlServer" requiresQuestionAndAnswer="false" requiresUniqueEmail="true" passwordFormat="Hashed" minRequiredNonalphanumericCharacters="0" minRequiredPasswordLength="4"/>
</providers>
</membership>
Comment