Hi,
I have a Contact page, with 4 textboxes and 4 field validators.
I made a RESET button to clear the text when pressed.
But for an example: if i type on 2 textboxes and then press the RESET button, it tries to validate all 4 textboxes.
My RESET button´s code:
protected void btnLimpar_Click(object sender, EventArgs e)
{
txtSbubject.Text = "";
txtEmail.Text = "";
txtMsg.Text = "";
txtName.Text = "";
}
...
Go to the complete details ...