I want to make free text field but show some suggestions under it when dropdown arrow selected. Suggestions will be read from database they are not static How can I do this with asp ? My dropdown field is as follows:
<asp:DropDownList style="width:50%;" ID="ctlAramaKayitlari" runat="server"
OnSelectedIndexChanged="ctlAramaKayitlari_SelectedIndexChanged" AutoPostBack="True"
AppendDataBoundItems="True"></asp:DropDownList>
solved