我正在尝试验证Google Recaptcha。
在验证时我收到错误:
名称回收在当前上下文中不存在。
[HttpPost]
public ActionResult Submit()
{
if (ReCaptcha.Validate(privateKey: "<private key>"))
{
return Content("Valid Captcha");
}
else
{
return Content("InValid Captcha");
}
}