📌  相关文章
📜  请求["g-recaptcha-response"] - Javascript 代码示例

📅  最后修改于: 2022-03-11 15:02:36.549000             🧑  作者: Mango

代码示例1
string EncodedResponse = Request.Form["g-Recaptcha-Response"];
bool IsCaptchaValid = (ReCaptchaClass.Validate(EncodedResponse) == "true" ? true : false);

if (IsCaptchaValid) {
    //Valid Request
}