Kentico reCaptcha不会阻止表单提交

时间:2015-05-13 01:08:26

标签: javascript jquery forms recaptcha kentico

我的WebPart中有reCaptcha FormControl

<script src='https://www.google.com/recaptcha/api.js'></script>
......

    <div class="form-group">
        <label>Please type the word below. If required use the buttons to change or listen to the word.</label>
        <cms:RecaptchaControl ID="reCaptchaVld" runat="server" data-theme="clean" data-callback="cpCallBack();" PrivateKey="xxxxxxxxx" PublicKey="xxxxxxxxx" data-recaptcha="" CssClass="g-recaptcha" /> 
    </div>

我做了一个测试,我填写了所有必填字段,但是将reCaptcha留空或取消选中,点击提交按钮,表单已成功提交。

我错过了什么吗?

1 个答案:

答案 0 :(得分:1)

如果是您的自定义网络部分,则需要调用IsValid()方法来检查文本是否输入正确。