Filtered Drop Down list items and search in ASP.NET

Bittu

New Member
I have a drop down list and when user types something in the same, the drop down list must show the filtered options to be selected. I have done the code behind but filtering is pending.\[code\] <asp:DropDownList ID="AppraisersDpd" runat="server" Width="134px" CssClass="dropdownpersonal textfont" onselectedindexchanged="AppraisersDpd_SelectedIndexChanged" AutoPostBack="true"></asp:DropDownList>\[/code\]The code behind is also there which is running:\[code\] AppraisersDpd.DataSource = apprblobj.FillAppraisers(); //fills Appraisers drop down AppraisersDpd.DataTextField = "AppraiserName"; AppraisersDpd.DataValueField = "AppraiserId"; AppraisersDpd.DataBind();\[/code\]can any one suggests me some clue? Should I use Combo box or I am going right?
 
Back
Top