I'm sorry that I'm such a newbie, but I was hoping this forum can offer me some help from kind techies.
I've got the Captcha apps to verify the security code, but my form inputs get lost and the email is sent with empty fields. I don't understand what is happening.
The user input goes to FORM method=POST action="process_form.asp" file which contains the Captcha verifcation:
<!-- Include file for CAPTCHA form processing -->
<!-- #include file="CAPTCHA/CAPTCHA_process_form.asp" -->
<%
If blnCAPTCHAcodeCorrect Then
Response.Redirect("emailForm.asp")
Else
Response.Write(" CAPTCHA code is NOT correct")
Response.Write("<a href=""javascript:history.back(1)""> Click here to amend</a>")
End If
%>
It goes to the emailForm.asp file if correct which contains the code for CDONTS mail, but the variables are lost.
Can anyone help? Thanks.