Visual Web Developer - ASP.NET Web Application Administration PROBLEM
Was wondering if somebody could please help me solve this.
I've follwed all steps correctly, but when I go to create a new us开发者_开发技巧er, it keeps saying "Password length minimum: 7. Non-alphanumeric characters required: 1."
I have tried about 20 different combinations of passwords and it just keeps saying the exact same thing and won't let me create a new user.
Can somebody please help?
It's pulling in the membership API security settings store in the database configuration; it's requiring at least one non alpha numeric character, so are you trying to add in _@^&%$, etc. characters too? To test this out, you can try to edit the configuration file, and change some of those settings.
There is a minRequiredNonAlphanumericCharacters that controls the non alpha characters, which you can set to zero to test. More information on the configuration is here: http://msdn.microsoft.com/en-us/library/ms998347.aspx
精彩评论