so on my webpage i have the following textbox
<asp:TextBox ID="txtFiltrarNomeUtente" runat="server" AutoPostBack="true" OnTextChanged="txtFiltrarNomeUtente_TextChanged">
and the handler
Protected Sub txtFiltrarNomeUtente_TextChanged(sender As Object, e As EventArgs) Handles txtFiltrarNomeUtente.TextChanged
(code...)
End Sub
and this is working fine, but i noticed that the textchanged event only triggers after the user writed text and press enter or mouse click.So with this said i wanted to know if its possible to make a postback for the event to trigger everytime the text is changed, like everytime the user press a key without having to press enter or mouse click? thanks in advance