当前位置:Gxlcms > 数据库问题 > SqlMembership参数说明

SqlMembership参数说明

时间:2021-07-01 10:21:17 帮助过:18人阅读

具体看微软官方说明:

https://msdn.microsoft.com/en-us/library/system.web.security.sqlmembershipprovider.applicationname(v=vs.110).aspx


https://msdn.microsoft.com/zh-cn/library/system.web.security.sqlmembershipprovider.applicationname(v=vs.80).aspx



常用参数列出,方便自己查看:


EnablePasswordReset 是否配置为允许用户重置其密码

MaxInvalidPasswordAttempts 允许的无效密码尝试次数

MinRequiredPasswordLength 密码最小长度

PasswordFormat 密码存储格式,如果设为Hashed,则加密

PasswordStrengthRegularExpression 通过正则表达式对密码进行强壮性校验


如:至少为七个字符。至少包含一个数字。至少包含一个特殊字符(非字母数字字符)

参数设置如下

passwordStrengthRegularExpression="@\"(?=.{6,})(?=(.*\d){1,})(?=(.*\W){1,})"


本文出自 “fishvsfrog” 博客,请务必保留此出处http://fishvsfrog.blog.51cto.com/388027/1927484

SqlMembership参数说明

标签:sqlmembership   参数说明   

人气教程排行