Visual Web Developer - ASP.NET Web 应用程序管理问题
想知道是否有人可以帮我解决这个问题。
我已正确执行所有步骤,但当我去创建新用户时,它一直显示“最小密码长度:7。需要非字母数字字符:1。”
我已经尝试了大约 20 种不同的密码组合,但它只是一直显示完全相同的内容,并且不允许我创建新用户。
有人可以帮忙吗?
Was wondering if somebody could please help me solve this.
I've follwed all steps correctly, but when I go to create a new user, 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?
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
它在数据库配置中提取会员 API 安全设置存储;它需要至少一个非字母数字字符,所以您是否也尝试添加 _@^&%$ 等字符?要测试这一点,您可以尝试编辑配置文件,并更改其中一些设置。
有一个 minRequiredNonAlphanumericCharacters 控制非字母字符,您可以将其设置为零来测试。有关配置的更多信息如下: http://msdn.microsoft.com/ en-us/library/ms998347.aspx
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