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";
}
}