Hi,
I have found some excellent code on the Internet which sets up a working CAPTCHA on my page. It works perfectly, UNTIL... I add validation controls to the form. After I've done this, if a field is left blank and then the CAPTCHA "Refresh" link is hit, the
validation control kicks in alerting the user that the field is empty and the CAPTCHA image does not refresh, as the user expected.
I have ONE problem. How can I get the CAPTCHA image to refresh (which, again, it does perfectly well as long as there are no validation controls on the form), even when the form DOES conatin validation controls? Basically, I want that "Refresh" link to work
independently of the validation control(s).
Here's the entire code (sorry about the table layout, this is how it came from the Internet):
The "web.config":
<configuration>
<system.web>
<compilation debug="true ...
Go to the complete details ...