m-u
10/1/2013 - 1:15 PM

recaptcha not working in asp.net

recaptcha not working in asp.net

protected void Button1_Click(object sender, EventArgs e)
{
    Page.Validate();    <--- you need this
    if (Page.IsValid)
    {
        lblResult.Text = "All Good";
    }
    else
    {
        lblResult.Text = "The words you entered are incorrect";
    }
}