I have a webpage. I show entries from a table of, say, students on my page. I ask all the students and show them in the grid. I want to use a text box to filter the results of a datagridview. For example, if the user types a in the text box, the grid will only show students who have an “a” in his / her name. I want to update the grid while editing a text field.
I set the autopostback textbox property to true, and I am updating the grid in the event with text change text. But the textchanged event fires only after the text field loses focus. How can I run it after custom types of just one character? thanks.
source share