Sorry but I've read all the previous entries and I just don't get this :¬(
I've got a contact form, contact1.asp, which contains the line
I've now included
<!-- include the Web Wiz CAPTCHA form -->
<!--#include file="CAPTCHA/CAPTCHA_form_inc.asp" -->
at the point I want my captcha box but obviously nothing is being processed.
In mailreply1.asp I've then got:
<%
If blnCAPTCHAcodeCorrect = True Then
Response.Write(" Thank you for writing to us")
ElseIf blnCAPTCHAcodeCorrect = False Then
Response.Redirect("contact1.asp")
End If
%>
but it loses all the info previously entered into the fields.
Is there a better way to do this so the customer doesn't have to r-enter information?
Edited by westwight - 13 December 2006 at 11:25pm