Recaptcha 客户端验证

发布于 2024-11-03 11:42:29 字数 134 浏览 0 评论 0原文

有没有办法限制客户端用户在进入服务器 sdie 之前必须填写 recaptcha?

我知道我们可以通过放置 !Page.IsValid 在服务器端进行检查,但我希望在提交之前进行客户端验证。

谢谢

Is there any way to restrict user on client side to must fill recaptcha before going to server sdie ?

I know we can check on server side by putting !Page.IsValid but I want client validation before submitting.

Thanks

如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。

评论(2

念三年u 2024-11-10 11:42:29

免责声明:我从未使用过 ASP.Net。

您无法阻止某人提交表单。

但是,在大多数情况下,可以使用某些 JavaScript 来阻止表单的提交。

为此,请尝试使用 Javascript/jQuery 验证 reCAPTCHA 生成的表单元素。最简单的方法是检查输入值的字符串长度是否大于零。

Disclaimer: I have never used ASP.Net.

You cannot prevent someone from submitting a form.

However, in most cases, it is possible to block the submission of a form by using some Javascript.

To do this, try to validate the of the form element that reCAPTCHA generates using Javascript/jQuery. The simplest method would be to check if the entered value's string-length is greater than zero.

梦在深巷 2024-11-10 11:42:29

有一种方法..通过禁用按钮本身..不久前做了同样的事情。

这是我的验证码

<div class="g-recaptcha" data-callback="EnableButton" data-expired-callback="DisableButton" data-sitekey="your-site-key"></div>

函数

<script type="text/javascript">
    var DisableButton = function () {
        alert("Confirmation Expired. Please Answer Recaptcha.");
        document.getElementById('buttonID').disabled = true;
        grecaptcha.reset();
    };
    var EnableButton = function () {
        document.getElementById('buttonID').disabled = false;
    };

</script>

,这些是我使用的javascript 我使用了 google recaptcha 2.0,

它非常容易使用。而且它是免费的。

There is a way.. by disabling the button itself.. did the same thing a while back.

this is my recaptcha

<div class="g-recaptcha" data-callback="EnableButton" data-expired-callback="DisableButton" data-sitekey="your-site-key"></div>

and these are the javascript functions i used

<script type="text/javascript">
    var DisableButton = function () {
        alert("Confirmation Expired. Please Answer Recaptcha.");
        document.getElementById('buttonID').disabled = true;
        grecaptcha.reset();
    };
    var EnableButton = function () {
        document.getElementById('buttonID').disabled = false;
    };

</script>

p.s. i used google recaptcha 2.0

its incredibly easy to use. and its FREE.

~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文