Exit
  • Global community
    • Language:
      • Deutsch
      • English
      • Español
      • Français
      • Português
  • 日本語コミュニティ
  • 한국 커뮤니티
0

Developer Toolbox - Integrate (ASP) CAPTCHA

Guest
Dec 03, 2007 Dec 03, 2007
Hi there,
I would like to know how to integrate (ASP) CAPTCHA into forms created using the developer toolbox. I use webwiz CAPTCHA and this works well, but the processing page must be different from the form page. The toolbox generated forms look pretty complicated and I would like to know if anyone has successfully done this - or knows how to go about achieving this.

I hope you can help
Regards
Scott
TOPICS
Extensions
432
Translate
Report
Community guidelines
Be kind and respectful, give credit to the original source of content, and search for duplicates before posting. Learn more
community guidelines
New Here ,
Dec 19, 2007 Dec 19, 2007
LATEST
I will give an example for a forgot password page..

1. Insert these strings at the top of your forgot password page

<!-- #include file="captcha/CAPTCHA_process_form.asp" -->
<%If Request.Form("capcontrol")="1" AND blnCAPTCHAcodeCorrect = false Then
Response.Redirect("forgotpassword.asp?cap=0")
End If
%>

2. Add captcha to your form as usual.

3. Insert a new hidden field to your form as below
<input name="capcontrol" type="hidden" value="1" />

it's a shame they don't have a captcha option for asp..


Mehmet


Translate
Report
Community guidelines
Be kind and respectful, give credit to the original source of content, and search for duplicates before posting. Learn more
community guidelines