problem of invoking text_changed event
ASP.NET
2
Posts
2
Posters
0
Views
1
Watching
-
Hi,I am changing the text property of a textbox by javascript. function change(obj){ var txt=obj; txt.value='0'; Upto this point the code is running fine.But I want the TextChanged event to be fired whenever the value is changed to '0'.The TextChanged event is not being fired.The AutoPostBack property of the textbox is set to "true".
-
Hi,I am changing the text property of a textbox by javascript. function change(obj){ var txt=obj; txt.value='0'; Upto this point the code is running fine.But I want the TextChanged event to be fired whenever the value is changed to '0'.The TextChanged event is not being fired.The AutoPostBack property of the textbox is set to "true".