如何定义 ASP.NET 成员资格提供程序的密码规则?

发布于 2024-07-15 20:55:19 字数 214 浏览 5 评论 0原文

当使用 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 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。

评论(2

幽梦紫曦~ 2024-07-22 20:55:19

请参阅本文。 您可以设置 minRequiredNonAlphanumericCharacters 设置。

See this article. You can set the minRequiredNonAlphanumericCharacters setting.

許願樹丅啲祈禱 2024-07-22 20:55:19

您可以使用 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.

~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文