So I wanted to make my textbox in asp.net to postback every time a text it typed onto it but i cant seem to figure out how. Does any one knows? here is the code of the event handler
Private Sub TextBox2_TextChanged(ByVal sender As System.Object, ByVal e As System.EventArgs) Handles txtFiltrarNomeUtente.TextChanged
If chkFiltroUtente.Checked And Me.cbxLocal.Text <> "" Then
Me.loadFormInfo()
End If
End Sub
and the textbox
<asp:TextBox ID="txtFiltrarNomeUtente" runat="server" AutoPostBack="true">
so any ideas on how to do it? thanks