Results 1 to 4 of 4

Thread: How to get CAPTCHA in VB.NET

  1. #1
    Join Date
    May 2008
    Posts
    255

    How to get CAPTCHA in VB.NET

    I have an application which is completely based on ASP.NET I have decided to arranged Captcha on that application but for that I wanted to develop that Captcha for my application and I also wanted to have the result of that Captcha in .NET only

  2. #2
    Join Date
    Mar 2008
    Posts
    192

    Re: How to get CAPTCHA in VB.NET

    VB.Net using Visual Studio 2005. Before we jump into the code lets take a look at what a CAPTCHA is. , Net using Visual Studio 2005. Before we jump into the code lets take a look at what a CAPTCHA is. The BotDetect ASP.NET CAPTCHA validation sample contains the basic code required to add a CAPTCHA control to an ASP.NET page and validate the user input. It can be used as a starting point when you are first learning how to use BotDetect CAPTCHA.

  3. #3
    Join Date
    Feb 2006
    Posts
    99

    Re: How to get CAPTCHA in VB.NET

    CAPTCHA stands for Completely Automated Public Turing Test To Tell Computers And Humans Apart." What does this mean? It is a program that can tell humans from machines using some type of generated test.
    Code:
    <httpHandlers>
        <add verb="GET" path="CaptchaImage.aspx" 
           type="WebControlCaptcha.CaptchaImageHandler, WebControlCaptcha" />
    </httpHandlers>
    This handler defines a special page named CaptchaImage.aspx. Now, this "page" doesn't actually exist.

  4. #4
    Join Date
    Dec 2008
    Posts
    161

    Re: How to get CAPTCHA in VB.NET

    The form also contains an <asp:TextBox> for the user input, an <asp:Button> to submit the page, and a pair of <asp:Label> controls which are used to show the CAPTCHA validation result. There has to be communication between the HttpHandler responsible for displaying the image, and the web page hosting the control -- otherwise, how would the calling control know what the randomly generated CAPTCHA. Using the class is simple. You just create the class, display the graphic from it and verify user input against the value stored in the class. You can also regenerate the value if the user requests it. Remember that you will need to save the generated bitmap to disk in order to display it to a web user in an ASP.NET application.

Similar Threads

  1. Typing Captcha images are always wrong on Safari 5
    By Hridayeshu in forum Technology & Internet
    Replies: 3
    Last Post: 16-01-2012, 10:12 PM
  2. Yahoo captcha issues with yahelite
    By Gaauge in forum Windows Software
    Replies: 5
    Last Post: 21-12-2009, 05:56 PM
  3. Wanted Small captcha
    By fastrod in forum Software Development
    Replies: 4
    Last Post: 26-03-2009, 02:13 PM

Tags for this Thread

Bookmarks

Posting Permissions

  • You may not post new threads
  • You may not post replies
  • You may not post attachments
  • You may not edit your posts
  •  
Page generated in 1,711,709,457.52847 seconds with 17 queries