asp.net 会员附加密码策略规则
我正在使用 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 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(2)
还可以对密码使用正则表达式。以下内容摘自此博客,其中包含一些详细信息:
http:// weblogs.asp.net/pleloup/archive/2005/12/05/432359.aspx
使用正则表达式
使用最小长度和非字母数字字符
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
Using minimum length and non-alphanumeric character
看起来唯一的其他选项是 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.