Hey, I have a master page which contains a Login control so that the user can login/logout from any page. However, a couple of content pages require a Recaptcha control. This causes problems because when I try and log in on a page that has the Recaptcha control, the system expects me to enter the words. I'm aware of the lack of validation groups in the Recaptcha control, and the fact that you can't have multiple forms on an ASP.NET page. Is there a way to work around this? A 'hacky' way I can think of, is in the "Login" event, check the page for a Recaptcha control. If one exists, then disable it, otherwise continue. However, that just seems quite inefficient especially when there are quite a few pages and most won't have a Recaptcha control.
|
feedback
|
|
The workaround for this problem is as follows:
Discussion thread on the official reCAPTCHA dev mailing list. | |||||||
feedback
|
|
What you should do is the following:
Should be wrapped around your entire page content, in your case on the master page since the login is there as well. From this point on you can just drop a recaptcha control on any page that derives from the given master page. You do not need another You have to understand that the recaptcha control is neither bound to a html form submit button, nor to any other specific button. Every time the page posts back the recaptcha sets the Sadly recaptcha does not follow the ASP.NET standards by using triggered validation combined with validation groups. This causes recaptcha to not validate. So now the login scenario is covered. When you want actually use the recaptcha functionality you just set A cleaner and better approach would be to rewrite the recaptcha control to make use of the | |||||||
feedback
|
|
I'm not 100% sure this is related, but I had a problem with the ReCaptcha control firing on every postback - The IsValid property logic was flawed. I fixed this particular issue: http://code.google.com/p/recaptcha/issues/detail?id=56#c3 Unfortunately, the ReCaptcha project has stagnated somewhat, and no fixes have made it into the release for some time. | ||||
|
feedback
|
|
I was in the exact same position with the login control in my master page and setting I've seen countless workarounds including updating the sparsely supported Recapta, but I decided to just selectively remove it from the equation.
| |||
|
feedback
|