Novkovski Stevo Bato
Novkovski Stevo Bato

Reputation: 1043

reCAPTCHA MVC3 problems

I have tried almost everything, but cant make it work.

I can use the dll in my controller but cant render in view.

 [RecaptchaControlMvc.CaptchaValidator]
    public ActionResult LogOn(LogOnModel model, string returnUrl)

I dont have an @ReCaptcha.GetHtml(theme: "red") option in my Razor View, only http://prntscr.com/9agkf

I have this code in my Razor View

 @Html.GenerateCaptcha()

Any finally looks what i get Screenshot

Upvotes: 1

Views: 690

Answers (1)

CD Smith
CD Smith

Reputation: 6607

See my answer here How to implement Google reCaptcha in an MVC3 application?

It details the needs to properly generate reCaptcha in MVC 3

Upvotes: 2

Related Questions