Questions tagged [mvcrecaptcha]
24 questions
4
votes
0 answers
Recaptcha V3 Always returning 0.9 score, when running through python script
I have implemented recaptcha v3 on form submit, which works fine on normal scenario as I'm getting 0.9 score. But when I try to run it from a python script using selenium, it still gives me 0.9 score, which is incorrect. I tried recaptcha v2, for…

vivekrn
- 37
- 2
4
votes
1 answer
how to get Hotmail Captcha Image
I am facing an issue when trying to read the Hotmail captcha image, when I put the captcha image url in my browser it shows an error message in browser:
404 - File or directory not found.
The resource you are looking for might have been removed, had…

narendra
- 451
- 3
- 12
2
votes
1 answer
ReCaptcha and MVC3, problems getting Microsoft.Web.Helpers working
I have reCaptcha installation problems. I already saw some posts about that, even in StackOverflow but it didn't help me to get it working.
I followed this post, and this post but in this line:
@using Microsoft.Web.Helpers
I get the message:
The…

Rubia Gardini
- 815
- 5
- 16
- 30
2
votes
1 answer
Testing code with the ReCaptcha validation in controller?
Here my simplified controller:
[HttpPost]
[ValidateAntiForgeryToken]
public ActionResult Register(RegisterModel model)
{
if (!ReCaptcha.Validate(Constants.ReCaptchaPrivateKey))
ModelState.AddModelError("recaptcha", "Incorrect value,…

ridermansb
- 10,779
- 24
- 115
- 226
2
votes
1 answer
MVC3 ReCaptcha with Fluent Validation
I'm trying to validate ReCaptcha using FluentValidation but I'm having some issues. Even though the ReCaptcha.Validate returns true the ModelState is not valid. In order to validate the ReCaptcha I added a field in the view model. Before checking to…

JamahalSOF
- 1,138
- 1
- 8
- 6
1
vote
1 answer
Problem with using the MvcReCaptcha library in a view
The MvcReCaptcha library looks very solid, and appears to have some good developer adoption, but when I tried it for the first time today, using the supplied HTML helper, my app won't run. I have the helper in a partial view as follows:

ProfK
- 49,207
- 121
- 399
- 775
1
vote
2 answers
reCAPTCHA not visible in a MVC partialview page
I'm having troubles adding google reCAPTCHA to my page.
in the Layout I have added the Google Recaptcha js
_layout
@ViewBag.Title
@Styles.Render("~/Content/css")
@Scripts.Render("~/bundles/modernizr")
…

Helbo
- 473
- 10
- 32
1
vote
1 answer
How to resolve "ERROR for site owner: Invalid site key" in MVC?
I want to implement google recaptcha into my application but it is throwing the error. I do not know what I have done wrong.
I have installed nuget package of GoogleRecaptcha and then got the site key which is basically a public key and private…

User9895
- 313
- 2
- 5
- 16
1
vote
0 answers
Recaptcha doesn't work with ajax and partial views
I'm using Recaptcha in my MVC4 web app. It was working correctly when it was embedded in the form but when I moved the @Html.Raw(Html.GenerateCaptchaHelper()) to partial view and trying to call this partial view via ajax request, it doesn't…

Mohamed Farrag
- 1,682
- 2
- 19
- 41
1
vote
3 answers
ReCaptcha Post Using C# in MVC Application
I'm trying to do a direct post to Google using this code. I keep getting an error, "invalid private key". I have double checked it and even had someone else double check it. The reason i'm going it this way is because I'm using javascript and…

Jim Kiely
- 365
- 2
- 6
- 24
1
vote
0 answers
recaptcha in mvc 4, post method is not hitting when submit the page
My recaptcha post action method is not hitting when i submit the page.
It showing in fiddler that it is going to post method. but not hitting in my VS2010. previously it was worked when i use the mysql data base not used entity framework. now we…

Ram
- 337
- 5
- 23
1
vote
0 answers
How to implement Google ReCaptcha in Ajax pop up
I am working in MVC3.0 and I want to implement Captcha (Google service) on a pop up. Now the problem is the pop up is made by ajax call.
In AJAX call the pop up Re captcha is not coming but in a normal pop up it is coming correctly.
I followed the…

sahil
- 11
- 2
1
vote
1 answer
ASync Recaptcha in MVC3
I've implemented ReCaptcha in MVC3 using ReCaptcha.net NuGet package http://recaptchanet.codeplex.com/wikipage?title=How%20to%20Use%20Recaptcha%20in%20an%20ASP.NET%20MVC%20Web%20Application. All working well, except I'd like to see if I can…

Andiih
- 12,285
- 10
- 57
- 88
1
vote
2 answers
Invalid reCAPTCHA request. Missing challenge value
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…

user2046305
- 13
- 1
- 5
0
votes
1 answer
Can the recaptcha character set be set?
I was wondering if there is a setting that can override the set of characters that will be shown on the captcha screen? I'm using the captcha plugin from Microsoft.Web.Helpers.
Any other mvc captcha library that anyone can recommend? I'm currently…

czetsuya
- 4,773
- 13
- 53
- 99