asp.net 会员附加密码策略规则

发布于 2024-08-28 12:29:15 字数 92 浏览 6 评论 0原文

我正在使用 asp.nbet 会员资格,它可以非常方便地让您选择强制执行最小密码长度和最小数字字符。您可以定义其他字符,例如必须有一个大写字符等吗?

干杯

I'm using asp.nbet membership which very handily gives you the choice of enforcing a min password length and the minimum numeric characters. Can you define others like there must be one upper-case character, etc?

cheers

如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。

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

发布评论

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

评论(2

娇俏 2024-09-04 12:29:15

还可以对密码使用正则表达式。以下内容摘自此博客,其中包含一些详细信息:

http:// weblogs.asp.net/pleloup/archive/2005/12/05/432359.aspx

使用正则表达式

<membership ...>
  <providers>
    <add passwordStrengthRegularExpression= 
                "^(?=.*\d)(?=.*[a-z])(?=.*[A-Z]).{8,10}$" .../>
  </providers>
</membership>

使用最小长度和非字母数字字符

 <membership ...>
  <providers>
    <add minRequiredPasswordLength=10 minRequiredNonalphanumericCharacters=2 .../>
  </providers>
 </membership>

There is also the ability to use a Regex against the password. The below is taken from this blog has some details:

http://weblogs.asp.net/pleloup/archive/2005/12/05/432359.aspx

Using regular expression

<membership ...>
  <providers>
    <add passwordStrengthRegularExpression= 
                "^(?=.*\d)(?=.*[a-z])(?=.*[A-Z]).{8,10}$" .../>
  </providers>
</membership>

Using minimum length and non-alphanumeric character

 <membership ...>
  <providers>
    <add minRequiredPasswordLength=10 minRequiredNonalphanumericCharacters=2 .../>
  </providers>
 </membership>
A君 2024-09-04 12:29:15

看起来唯一的其他选项是 minRequiredNonAlphanumericCharacters,所以没有。
但这并不能阻止您在登录控制密码字段上放置验证器。

It looks like the only other option is minRequiredNonAlphanumericCharacters, so no.
But that doesnt stop you from putting a validator on the Login control password field.

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