如何定义 ASP.NET 成员资格提供程序的密码规则?
当使用 ASP.NET 会员资格提供程序的 Web 表单身份验证时,我们默认采用一些相当严格的密码规则。 我认为需要八个字符,其中包括一个非字母。
我不想让它们都随意松动,但通常我不会在自己的密码中使用非字母字符,并且感觉自己像一个伪君子强迫我的用户这样做。
我已经做了一些查找,但无法弄清楚该规则是在哪里定义的。 我确信我只是错过了一些简单的东西 - 有人知道吗?
When using web forms authentication with the ASP.NET Membership provider, we are defaulted to some decently strict password rules. I think eight characters, including one non-alpha, are required.
I'm not looking to make them all willy-nill loose, but generally I do not use a non-alpha character in my own password, and feel like a hypocrite forcing my users to do so.
I've done some looking, but can't figure out where this rule is defined. I'm sure I'm just missing something simple - anyone know?
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(2)
请参阅本文。 您可以设置 minRequiredNonAlphanumericCharacters 设置。
See this article. You can set the minRequiredNonAlphanumericCharacters setting.
您可以使用 Web 配置的configuration\system.web\membership\providers\add 部分的passwordStrengthRegularExpression 属性。
我不知道如果密码不符合指定的正则表达式,ASP.NET 是否允许用户创建帐户。
此处有一个示例。
You could use the passwordStrengthRegularExpression property of the configuration\system.web\membership\providers\add section of the web config.
I don't know if ASP.NET allows a user to create an account if the password doesn't complains the regular expression especified.
There is an example here.