How can I compare the value of my text box letter each time when i will be typing and place matching word in dropdhown in c#?
<asp:UpdatePanel runat="server" id="UpdatePanel" updatemode="Conditional">
<Triggers>
<asp:AsyncPostBackTrigger controlid="txtBox" eventname="TextChanged" />
</Triggers>
<ContentTemplate>
<asp:TextBox ID="txtBox" runat="server" OnTextChanged="TextBox1_TextChanged" Width="195px"AutoPostBack="true"></asp:TextBox>
<br />
<br />
<asp:listbox ID="lstBox" runat="server" Width="202px"></asp:listbox>
</ContentTemplate>
</asp:UpdatePanel>**