ASP .NET 可編輯,輸入自動匹配選項的下拉框

一. 引用dll文件ui

二. aspx前臺頁面應用該控件this

    <%@ Register TagPrefix="telerik" Namespace="Telerik.Web.UI" Assembly="Telerik.Web.UI" %>
    <%@ Register TagPrefix="qsf" Namespace="Telerik.QuickStart" %>
spa

    小區:
                <telerik:RadComboBox RenderMode="Lightweight" ID="DropDownList1" AllowCustomText="true" AutoPostBack="True" runat="server" Width="110px" Height="400px"
     EmptyMessage="請輸入小區名稱" OnSelectedIndexChanged="DropDownList1_SelectedIndexChanged" OnItemsRequested="DropDownList1_ItemsRequested" MarkFirstMatch="true" EnableLoadOnDemand="true"
            HighlightTemplatedItems="true" DropDownCssClass="exampleRadComboBox">
                </telerik:RadComboBox>
server

三. aspx.cs文件給下拉框綁定下拉選項數據blog

    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;
it

 

四. 檢索效果List

  檢索前:引用

  檢索後:im

相關文章
相關標籤/搜索