Yeah, use a password thats 7 or more in length with at least one non-alphanumeric
If you dont want that much complexity:
- Go into "machine.config" (c:\<Windows>\Microsoft.NET\Framework\<Version>\Config)
- Find the <membership> node
- Copy the whole node into your app's "web.config"
- Adjust as necessary (settings for length and complexity)
"If you make it idiot proof, they'll build a better idiot"
I have the same problem, the password I have selected is "jiptravel1", it is 7 charachters, but the system does not accpet it and it displays the same error...
I have the same problem, the password I have selected is "jiptravel1", it is 7 charachters, but the system does not accpet it and it displays the same error...
Just wanted to point out that the password listed above does NOT have any non-alphanumeric characters in it. That is why it was failing the validation test.
I've tried this and failed where others appearently succeeded. Exactly where do you place the <membership>node and its content within the web.config file
I followed all your instructions but the program still not work. It show the message:" Password length minimum: 7. Non-alphanumeric characters required: 1.". I try to config to allow password retrive in machine.config but it does not work too. Can you teach
me why?
seybaa
Member
80 Points
24 Posts
Can't create user (Password length minimum: 7. Non-alphanumeric characters required: 1. )
Nov 14, 2005 03:10 PM|LINK
I get the following errror.
MorningZ
Star
8849 Points
1822 Posts
Re: Can't create user (Password length minimum: 7. Non-alphanumeric characters required: 1. )
Nov 14, 2005 05:49 PM|LINK
Yeah, use a password thats 7 or more in length with at least one non-alphanumeric
If you dont want that much complexity:
- Go into "machine.config" (c:\<Windows>\Microsoft.NET\Framework\<Version>\Config)
- Find the <membership> node
- Copy the whole node into your app's "web.config"
- Adjust as necessary (settings for length and complexity)
rfurdzik
Contributor
3439 Points
1731 Posts
Re: Can't create user (Password length minimum: 7. Non-alphanumeric characters required: 1. )
Nov 17, 2005 02:21 AM|LINK
I have the same problem, the password I have selected is "jiptravel1", it is 7 charachters, but the system does not accpet it and it displays the same error...
Buy Sell Domains - DomainsHeat.com
Free ASP.NET controls: Youtube Web Control and Ajax Zoom Control
MorningZ
Star
8849 Points
1822 Posts
Re: Can't create user (Password length minimum: 7. Non-alphanumeric characters required: 1. )
Nov 17, 2005 02:38 AM|LINK
rfurdzik
Contributor
3439 Points
1731 Posts
Re: Can't create user (Password length minimum: 7. Non-alphanumeric characters required: 1. )
Nov 17, 2005 03:18 AM|LINK
Buy Sell Domains - DomainsHeat.com
Free ASP.NET controls: Youtube Web Control and Ajax Zoom Control
jsutterfield
Member
5 Points
1 Post
Re: Can't create user (Password length minimum: 7. Non-alphanumeric characters required: 1. )
Nov 20, 2005 11:34 PM|LINK
Just wanted to point out that the password listed above does NOT have any non-alphanumeric characters in it. That is why it was failing the validation test.
Public Alias
Member
10 Points
2 Posts
Re: Can't create user (Password length minimum: 7. Non-alphanumeric characters required: 1. )
Nov 21, 2005 01:44 PM|LINK
Regards Alias
MorningZ
Star
8849 Points
1822 Posts
Re: Can't create user (Password length minimum: 7. Non-alphanumeric characters required: 1. )
Nov 21, 2005 04:16 PM|LINK
<system.web>
<membership>
<providers>
<remove name="AspNetSqlMembershipProvider"/>
<add name="AspNetSqlMembershipProvider" type="System.Web.Security.SqlMembershipProvider, System.Web, Version=2.0.0.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a" connectionStringName="LocalSqlServer" enablePasswordRetrieval="true" enablePasswordReset="true" requiresQuestionAndAnswer="false" applicationName="/" requiresUniqueEmail="true" passwordFormat="Encrypted" maxInvalidPasswordAttempts="5" passwordAttemptWindow="10" passwordStrengthRegularExpression="" minRequiredPasswordLength="4" minRequiredNonalphanumericCharacters="0"/>
</providers>
</membership>
Public Alias
Member
10 Points
2 Posts
Re: Can't create user (Password length minimum: 7. Non-alphanumeric characters required: 1. )
Nov 22, 2005 07:27 AM|LINK
zimone
Member
10 Points
2 Posts
Re: Can't create user (Password length minimum: 7. Non-alphanumeric characters required: 1. )
Dec 23, 2005 10:54 AM|LINK
Hello.
I followed all your instructions but the program still not work. It show the message:" Password length minimum: 7. Non-alphanumeric characters required: 1.". I try to config to allow password retrive in machine.config but it does not work too. Can you teach me why?
Thanks for your time.