Hi Guys,
I am trying the Captcha and have it on my pages as the demo that comes with it suggests.
On my forms page when called up I see the Captcha and image and enter it and hit send>>>>
The process page opens and at the top of the page i get the message the Captcha is incorrect....
I have the code inserted properly as far as i see, Im quite good with asp/vbs usually and copied borgs examples.
My server uses session vars without problem elsewhere so doubt im dropping sessions?
Any thoughts are very welcome as I realy want to use this in my form to stop remote submissions.
Process Page has:
<!--#include file="CAPTCHA/CAPTCHA_process_form.asp" --> <%
If blnCAPTCHAcodeCorrect = True Then Response.Write(" CAPTCHA code is correct") ElseIf blnCAPTCHAcodeCorrect = False Then Response.Write(" CAPTCHA code is NOT correct") End If
%>
Form Page has:
<!--#include file="CAPTCHA/CAPTCHA_form_inc.asp" -->
|
Thank You