我正在尝试验证 Google Recaptcha。
- 我添加了dll。
- 实施了设计。
在验证时,我收到错误:
当前上下文中不存在 Name Recaptcha。
[HttpPost]
public ActionResult Submit()
{
if (ReCaptcha.Validate(privateKey: "<private key>"))
{
return Content("Valid Captcha");
}
else
{
return Content("InValid Captcha");
}
}