Posted on: 8/21/2014 7:55:19 AM | Views : 1597

 TextBox.TextChanged event firing twice
i am using windows server 2012 r2, i used textboxchanged event which is fires twice for on change click.
the below code execute twince for one click
protected void txtm1_TextChanged(object sender, EventArgs e) {
if (txtm1.Text != "") {
............................................ } else {
........................................................ } 
}

Go to the complete details ...