WebSecurity类是否提供了密码失败次数的检查?如果是,那么这个配置在哪里?
使用旧的成员资格提供程序,可以在成员资格部分的web.config中进行配置。简单会员有类似的东西吗?
答案 0 :(得分:2)
我不这么认为,SimpleMembership基本上没有任何逻辑来自动锁定帐户。
相反,您可以通过以下方式确定锁定状态:
WebSecurity的IsAccountLockedOut方法:
public static bool IsAccountLockedOut(string userName, int allowedPasswordAttempts, int intervalInSeconds)