使用 MvcReCaptcha 仅请求一次验证码
我正在使用 MvcRecaptcha 来防止机器人在 ASP.NET MVC 2.0 网站上发布复杂的未经身份验证的客户端表单。
我只想要求未经身份验证的客户端输入一个正确的验证码,即使某些表单的输入不正确。
在我看来,在成功输入后,我尝试使用 Session["CaptchaSuccess"] = true;
变量来抑制 Html.GenerateCaptcha()
,但存在 <我的 [HttpPost]
视图上的 code>[CaptchaValidator] 属性会导致错误,因为它自然需要一些 ReCaptcha 表单输入。
可靠地实现这一目标的最简单方法是什么(包括在移动浏览器上)?
I'm using MvcRecaptcha to prevent bot posts for a complex unauthenticated client form on an ASP.NET MVC 2.0 site.
I only want to require one correct CAPTCHA entry from an unauthenticated client, even if some of the form's inputs are incorrect.
I have tried using a Session["CaptchaSuccess"] = true;
variable to suppress Html.GenerateCaptcha()
in my view following a successful entry, but the presence of the [CaptchaValidator]
attribute on my [HttpPost]
view causes an error because it naturally requires some ReCaptcha form inputs.
What is the simplest way to achieve this reliably, including on mobile browsers?
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
通过修改
[CaptchaValidatorAttribute]
OnActionExecuting方法解决,其中CaptchaSuccessFieldKey
指常量字符串值“CaptchaSuccess”:Solved by modifying the
[CaptchaValidatorAttribute]
OnActionExecuting method, whereCaptchaSuccessFieldKey
refers to the constant string value "CaptchaSuccess":