我希望在登录屏幕上将https://developers.google.com/recaptcha/docs/aspnet添加到ASP.NET / VB项目中。但是,有没有办法跟踪无效尝试,然后增加登录所需的时间?或者我需要创建自己的基于验证码的系统吗?
答案 0 :(得分:0)
您可以在web.config中执行此操作
<configuration>
<system.web>
<membership defaultProvider=" ">
<providers>
<clear/>
<add connectionStringName=""
applicationName=""
maxInvalidPasswordAttempts="3 "
passwordAttemptWindow="30"
name=""
type=""/>
</providers>
</membership>
</system.web>
</configuration>