RichoSoft supplies this code as-is and makes no guarantees that it will work correctly on your server, it is your responsibility to check that your server is capable of running Classic ASP 3.0 code. RichoSoft will accept no responsibility whatsoever for any damage in whatever form caused by the code or modifications to the code by any other persons. By clicking the Download button you are accepting these terms.
<%
<!--- Sample ASP 3.0 scripts to integrate reCaptcha from reCaptcha.net into form submission.-->
<!--- Created by RichoSoft - 2009 - www.richosoft.co.uk -->
<!--You need three pages:--->
<!---recaptcha1.asp (to generate the reCaptcha image on the form) --->
<!---recaptcha2.asp (to validate the reCaptcha and process the form) --->
<!---keyvals.asp (to enter your public and private keys into the forms ) --->
<!---You are free to modify these pages as required to fit into your site(s) - but requested to leave the references to RichoSoft in tact--->
<!-- It would also be nice if you could put a link to RichoSoft on your web site--->
Dim publickey,privatekey
<!--This is where you enter your Private and Public Keys supplied by reCaptcha-->
publickey="Enter your Public Key Here"
privatekey="Enter your Private Key Here"
%>