I am working with AJAX and ASP.NET, I have a page with 2 textboxes and 1 label in an update panel, I want the OnTextChanged event to fire whenever the user types something in the textbox.
Right now, I got it working but it only fires the event after the user finishes typing and loses focus from the textbox, how can I get it to fire the event EVERYTIME the user types something.. Like this:
A > (fires event) > P > (fires event) > P > (fires event) > L > (fires event) > E (fires event)
onkeyup? - melancia