I have read through all of the posts on Captcha (found by keyword search) and tried troubleshooting, but still can't get it to work. Perhaps my understanding of how the programs work and fit together is foggy.
Here is my latest error message:
Microsoft VBScript compilation error '800a0411'
Name redefined
/hauntedhouse/CAPTCHA/CAPTCHA_setup.asp, line 54
Dim blnCAPTCHAabout
----^
I am not sure where I need to declare this variable.
Here is the Captcha code that is INSIDE my form:
<!-- include the Web Wiz CAPTCHA form -->
<!--#include file="CAPTCHA/CAPTCHA_form_inc.asp" -->
<br>
<p><span class="style7">Enter the code exactly as you see it in the image:-<br />
(Cookies must be enabled)</span><br />
</p>
<!-- Include file for CAPTCHA form processing -->
<!-- #include file="CAPTCHA/CAPTCHA_process_form.asp" -->
<%
'Above we include the file that checks to see if the security code is correct
'The variable 'blnCAPTCHAcodeCorrect' will be set to true if the security code is entered correctly
If blnCAPTCHAcodeCorrect Then
Response.Write("Correctly")
Else
Response.Write("Incorrectly")
End If
%>
I didn't write any other conditions yet because I wanted to see if it passed through the first step.
I am using CDONTS for my email processesor. So I have a emailform.asp file that processes the CDONTS email component.
So there are three key files: the form file, the CDONTS file, and the Thank You file that the user gets when the form results were successfully emailed.
Please someone help me. Thanks greatly.