As you can see (I've blotted out the details) the form processed correctly:

If you had entered say a wrong code you would have been directed to this page:
http://www.justcheck.co.uk/contact_fail.asp
Sorry it seems a bit basic but I was rushing

How I did it -
1. Install Captcha into root directory where you might have your normal folders ie. images, navbuttons whatever, and all your normal webfiles
2. I had a page called contact.asp which had the form on and at the top of that page you put:
<%@LANGUAGE="VBSCRIPT" %>
<!-- Include file for CAPTCHA configuration -->
<!-- #include file="CAPTCHA/CAPTCHA_configuration.asp" -->
Your form obviously then goes to say a file called send_email.asp
And at the bottom of your contact form, but within the form itself
<!-- include the Web Wiz CAPTCHA form -->
<!--#include file="CAPTCHA/CAPTCHA_form_inc.asp" -->
Then on the send_email.asp file at the top
<%@LANGUAGE="VBSCRIPT" %>
<!-- Include file for CAPTCHA configuration -->
<!-- #include file="CAPTCHA/CAPTCHA_configuration.asp" -->
<!-- Include file for CAPTCHA form processing -->
<!-- #include file="CAPTCHA/CAPTCHA_process_form.asp" -->
<%
'The line below will prevent the rest of the file from processing if the CAPTCHA code is entered incorrectly
'To use the line below remove the comment (') quote mark from in front of the line
If blnCAPTCHAcodeCorrect = False Then Call stopProcess()
%>
If you then edit the file in the captcha folder called:
CAPTCHA_configuration.asp and see this bit below
'***** This is the name of the page you want users redirected to if CAPTCHA is entered incorrectly *****
'Place the page to be redirected to between the quote marks below
Const strIncorrectCAPTCHApage = ""
In my case I put in between the speech marks
Const strIncorrectCAPTCHApage = "/contact_fail.asp"
The / bit shows that the page contact_fail.asp is outside the CAPTCHA folder
I hope that helps Julie. If you have any questions please email or PM me and I can help you out further