CAPTCHA FROM WEB WIZ GUIDE
<%@LANGUAGE="VBSCRIPT" %> <% '********************************************************************************************************** ' I have deleted this first line from CAPTCHA/CAPTCHA_process_form.asp' ' This is to avoid the variables to be redefined. '********************************************************************************************************** Dim name, email, addr, msg name=request.form("name") email=request.form("email") addr=request.form("addr") if email = "" Then msg="" Else If blnCAPTCHAcodeCorrect = True Then Set NewMailObj=Server.CreateObject("CDONTS.NewMail") NewMailObj.From = "jmanalili@yahoo.com" NewMailObj.To = email NewMailObj.Subject = "Confirmation email from Total Tax Services" NewMailObj.BodyFormat = 0 NewMailObj.MailFormat = 0 NewMailObj.Body = "Test Email form with CAPTCHA" NewMailObj.Send Set NewMailObj = nothing Response.Redirect("confirm.asp") ElseIf blnCAPTCHAcodeCorrect = False Then msg="Wrong code entered" End If End if %>
Web Wiz CAPTCHA Demo
Web Wiz CAPTCHA
Demo Form
Name:
Email:
Address:
Enter the code exactly as you see it in the image:-
(Cookies must be enabled)
<%=msg%>
go top