Invoke event handler programatically

  • Thread starter Thread starter mg
  • Start date Start date
M

mg

In a Web Form, I have a TextBox:

protected System.Web.UI.WebControls.TextBox TextBox1;

At design time, I double click on the TextBox and get an
event handler:

private void TextBox1_TextChanged(object sender,
System.EventArgs e)
{

}

What code do I write to invoke this event handler
programatically; e.g., without actually hitting the Enter
key at runtime.
 
TextBox1.TextChanged += new
System.EventHandler(this.TextBox1_TextChanged);

you still need to write the TextBox1_TextChanged function.

Natty Gur, CTO
Dao2Com Ltd.
28th Baruch Hirsch st. Bnei-Brak
Israel , 51114

Phone Numbers:
Office: +972-(0)3-5786668
Fax: +972-(0)3-5703475
Mobile: +972-(0)58-888377

Know the overall picture
 
Back
Top