How to create CAPTCHA like security in my form?

Last post 05-15-2008 10:12 AM by mychucky. 5 replies.

Sort Posts:

  • How to create CAPTCHA like security in my form?

    05-14-2008, 4:05 PM

    Will somone point me to samples of how to implement CAPTCHA like security on my forms?

  • Re: How to create CAPTCHA like security in my form?

    05-14-2008, 4:08 PM
    • Loading...
    • amensi
    • Joined on 02-13-2006, 7:43 PM
    • Canada
    • Posts 367
    Alex Mensi - Check out my blog
    Maven Technologies Inc.
    --

    Don't forget to click "Mark as Answer" on the post that helped you.
  • Re: How to create CAPTCHA like security in my form?

    05-14-2008, 4:18 PM

    amensi:

     The learn more link points to a Page Not Found in CodeProject.com website.

  • Re: How to create CAPTCHA like security in my form?

    05-14-2008, 5:33 PM
    Answer
    • Loading...
    • FarhanK
    • Joined on 01-14-2008, 5:21 PM
    • Posts 216

    Hi,

    Following can also help...

    http://www.codeproject.com/KB/aspnet/CaptchaImage.aspx 

    [Please mark the post as answer that helps you.]

    Regards,
    Farhan Uddin Khan
    Enpointe Technologies
  • Re: How to create CAPTCHA like security in my form?

    05-14-2008, 8:27 PM
    Answer
    • Loading...
    • amensi
    • Joined on 02-13-2006, 7:43 PM
    • Canada
    • Posts 367

    I also use this one from time to time: http://www.mondor.org/captcha.aspx

     

    Alex Mensi - Check out my blog
    Maven Technologies Inc.
    --

    Don't forget to click "Mark as Answer" on the post that helped you.
  • Re: How to create CAPTCHA like security in my form?

    05-15-2008, 10:12 AM

    amensi:

    I also use this one from time to time: http://www.mondor.org/captcha.aspx

    Okay, I checked that out and I am bit confused on this.

    ccJoin.ValidateCaptcha(txtCap.Text);
    if (!ccJoin.UserValidated)
    {
      //Inform user that his input was wrong ...
      return;
    }
     

    Usually, where (which method) should I put this code in? Let's say I put in the submitButton_Click method, by using the word "reutrn;" this will stop any further execution of the code in that button_click method, correct? 

     

Page 1 of 1 (6 items)