Hi everyone,
Im creating a new user with create user wizard control but facing with this error:
The password supplied is invalid. Passwords must conform to the password strength requirements configured for the default provider.
this is my web.config:
<membership defaultProvider="MyMembershipProvider">
<providers>
<add name="MyMembershipProvider"
type="System.Web.Security.SqlMembershipProvider"
passwordFormat="Clear"
minRequiredNonalphanumericCharacters="0"
requiresQuestionAndAnswer="false"
connectionStringName="LoginConnectionString"/>
</providers>
</membership>
I dont want any restriction to password.any password format will be accepted.
how to fix this error?
Go to the complete details ...