Invoke event handler programatically

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.
 
N

Natty Gur

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
 

Ask a Question

Want to reply to this thread or ask your own question?

You'll need to choose a username for the site, which only take a couple of moments. After that, you can post your question and our members will help you out.

Ask a Question

Members online

No members online now.

Forum statistics

Threads
473,744
Messages
2,569,484
Members
44,903
Latest member
orderPeak8CBDGummies

Latest Threads

Top