Results 1 to 3 of 3

Thread: Adding Captcha to CreateUserWizard

  1. #1

    Thread Starter
    Fanatic Member bharanidharanit's Avatar
    Join Date
    Oct 2008
    Location
    India
    Posts
    673

    Adding Captcha to CreateUserWizard

    Hello,
    I am using Visual Web Developer 2008.
    I added CreateUserWizard on the form. In the CreateUserWizard Control, I want to add Captcha Control. And how can i do this?
    Thankyou

  2. #2
    PowerPoster gep13's Avatar
    Join Date
    Nov 2004
    Location
    The Granite City
    Posts
    21,963

    Re: Adding Captcha to CreateUserWizard

    Hey,

    You should be able to add a Captcha Control to the ContentTemplate for the CreateUserWizard, and this will allow you to prevent form submission until the Captcha has been completed.

    Have a look at this control:

    http://recaptcha.net/

    It is one that I have used in the past.

    Hope that helps!!

    Gary

  3. #3

    Thread Starter
    Fanatic Member bharanidharanit's Avatar
    Join Date
    Oct 2008
    Location
    India
    Posts
    673

    Re: Adding Captcha to CreateUserWizard

    Quote Originally Posted by gep13 View Post
    Hey,

    You should be able to add a Captcha Control to the ContentTemplate for the CreateUserWizard, and this will allow you to prevent form submission until the Captcha has been completed.

    Have a look at this control:

    http://recaptcha.net/

    It is one that I have used in the past.

    Hope that helps!!

    Gary
    Hi i added recaptcha to the CreateUserWizard control, but i am getting error, next page is not navigating (ie the default continue page in CreateUserWizard Control). Simply the CreateUserWizard Page is reloading.
    I changed code as this,
    Code:
    <script runat= "server">
        Sub btnSubmit_Click(ByVal sender As Object, ByVal e As EventArgs)
            If Page.IsValid Then
                Response.Redirect("donhome.aspx")
            Else
                Response.Redirect("donregister.aspx")
            End If
        End Sub
    </script>
    Code:
    <asp:CreateUserWizard ID="CreateUserWizard1" runat="server" OnClick = "btnSubmit_Click" >

Posting Permissions

  • You may not post new threads
  • You may not post replies
  • You may not post attachments
  • You may not edit your posts
  •  



Click Here to Expand Forum to Full Width