I'm testing CAPTCHA before buying the license. I entered the code as instructed to the form & processor page.
The only difference I see is on my processor form but I'm not sure if this has any impact:
<%@ Language="VBScript"%>
<!--#include file="stdincl.vbs"-->
<!-- Include file for CAPTCHA form processing -->
<!-- #include file="CAPTCHA/CAPTCHA_process_form.asp" -->
<%
'If CAPTCHA is entered correctly run the following code
If blnCAPTCHAcodeCorrect = True Then
'Place code here that is to run if CAPTCHA is entered correctly
Response.Write("CAPTCHA code is correct")
'If CAPTCHA is NOT entered correctly run the following code
ElseIf blnCAPTCHAcodeCorrect = False Then
'Place code here that is to run if CAPTCHA is NOT entered correctly
Response.Write("CAPTCHA code is NOT correct")
End If
%>
Each time, the processor page tells me that the code was not entered properly even though I've entered the correct one. What am I doing wrong here?
I didn't tell it to redirect yet because I want to make sure it's working first. I can't figure out why it keeps stating that the code wasn't entered correctly when I did enter it several times. The example files run fine.