%
' Construct the captchas object.
' Required Parameters
' You receive this values upon registration at http://captchas.net.
' client: "demo"
' secret: "secret"
' Optional Parameters and defaults
' repository_prefix: "captchas_net_random/" (path to repository)
' cleanup_time: "3600" (max 1 hour between query and check)
' alphabet: "abcdefghijklmnopqrstuvwxyz" (Used characters in captcha)
' letters: "6" (Number of characters in captcha)
' width: "240" (image width)
' height: "80" (image height)
Dim captchas
Set captchas = CaptchasDotNet ("demo","secret","","","abcdefghkmnopqrstuvwxyz","6","240","80")
' We recommend small letters without mistakable ijl:
' Set captchas = CaptchasDotNet ("demo","secret","","","abcdefghkmnopqrstuvwxyz","","","")
' Don't forget same settings in check.asp
%>
2Diamonds