I'm using reCaptcha in an MVC application. In controller i have RecaptchacontrolMVC.CaptchaValidator attribute.
My CaptchaValid always return false with the error message "Invalid reCAPTCHA request. Missing challenge value."
[RecaptchaControlMvc.CaptchaValidator]
public ActionResult Login(Model model, bool captchaValid, string
captchaErrorMessage)
{
if(captchValid)//this is false
}
Am I missing something?