ASP. NET editable, enter the drop-down box of the automatic Match option, and the. net drop-down box
1. Reference dll files
2. Apply this control to the aspx foreground page
<% @ Register TagPrefix = "telerik" Namespace = "Telerik. Web. UI" Assembly = "Telerik. Web. UI" %>
<% @ Register TagPrefix = "qsf" Namespace = "Telerik. QuickStart" %>
Residential Area:
<Telerik: RadComboBox RenderMode = "Lightweight" ID = "DropDownList1" AllowCustomText = "true" AutoPostBack = "True" runat = "server" Width = "110px" Height = "400px"
EmptyMessage = "enter the cell name" OnSelectedIndexChanged = "dropdownlist+selectedindexchanged" OnItemsRequested = "dropdownlist+itemsrequested" MarkFirstMatch = "true" EnableLoadOnDemand = "true"
HighlightTemplatedItems = "true" DropDownCssClass = "exampleRadComboBox">
</Telerik: RadComboBox>
3. Bind The aspx. cs file to the drop-down box and select data from the drop-down list.
This. DropDownList1.DataSource = (new BLL_TArea (). GetAllAreaInfo ();
This. DropDownList1.DataTextField = "AREANAME ";
This. DropDownList1.DataValueField = "AREAGUID ";
This. DropDownList1.DataBind ();
DropDownList1.Items. FindItemByValue (BaseClass. Utility. Cookie. GetCookie ("AreaGuid"). Selected = true;
Iv. Search Results
Before retrieval:
After retrieval: