I'll try setting it up again to see what happens. I'm hosting a website myself so I see what happens.
The examples that you provided work fine.
The form without the Webwiz CAPTCHA works fine, where, if I dont put in the correct criteria then it will not update the database.
I have a page called commentsOK.asp that is targeted when the Submit button is clicked.
I placed the include
<!-- Include file for CAPTCHA form processing -->
<!-- #include file="CAPTCHA/CAPTCHA_process_form.asp" -->
at the very top of that page, and then placed the:
<%
If blnCAPTCHAcodeCorrect = True Then
Response.Write(" CAPTCHA code is correct")
ElseIf blnCAPTCHAcodeCorrect = False Then
Response.Write(" CAPTCHA code is NOT correct")
End If
%>
in the body of the page. Is this correct?
cheers