Capture client side text change event for asp:TextBox
问题 I have a form that contains a TextBox. A pop up window will return a value and put it into the TextBox. when this happens, I need to populate another control. I tried tried "onChange" but it was not triggered . How can this be achieved? 回答1: You can use onchange, but this usually won't wire until the box loses focus . There's also onkeyup, which you want to use if you want the new text immediately. Can you control the window populating the textbox? If so that's your best route, since it's the