I'm using ASP FormMail and am tired of the spam I get, so I figured I would use CAPTCHA in conjunction with the ASP FormMail script.
I've installed everything but found that the form would process if the verification was typed in wrong or right.
I can not figure out at what page to place the following:
<!-- #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
%>
|
Should it be on the page that processes the form (the asp file) or should it be on the page that says thanks.