名称回收在当前上下文中不存在

时间:2014-07-15 16:41:01

标签: asp.net-mvc-4 mvcrecaptcha

我正在尝试验证Google Recaptcha。

  1. 我添加了dll。
  2. 实施设计。
  3. 在验证时我收到错误:

      

    名称回收在当前上下文中不存在。

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

0 个答案:

没有答案