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
Printable View
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
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" >