0

我正在尝试验证 Google Recaptcha。

  1. 我添加了dll。
  2. 实施了设计。

在验证时,我收到错误:

当前上下文中不存在 Name Recaptcha。

[HttpPost]
public ActionResult Submit()
{
    if (ReCaptcha.Validate(privateKey: "<private key>"))
    {
        return Content("Valid Captcha");
    }
    else
    {
        return Content("InValid Captcha");
    }
}
4

0 回答 0