views:

300

answers:

1

hi In a .aspx web page, by setting a textbox's text property by code in run time, will Textchanged event handler of that textbox be fired?

+3  A: 

No it doesn't.

You might want to put the code of your TextChanged event in a separate method so that you can call it manually after you change the Text property.

Zyphrax
thank you very much for your attention
odiseh