ASP .NET 可编辑,输入自动匹配选项的下拉框

2018-06-22 07:46:37来源:未知 阅读 ()

新老客户大回馈,云服务器低至5折

一. 引用dll文件

二. aspx前台页面应用该控件

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

    小区:
                <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>

三. aspx.cs文件给下拉框绑定下拉选项数据

    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;

 

四. 检索效果

  检索前:

  检索后:

 

标签:

版权申明:本站文章部分自网络,如有侵权,请联系:west999com@outlook.com
特别注意:本站所有转载文章言论不代表本站观点,本站所提供的摄影照片,插画,设计作品,如需使用,请与原作者联系,版权归原作者所有

上一篇:任务调度之持久化(基于Quartz.net)

下一篇:ASP.NET 实现上传EXCEL,利用NOPI操作,转换得到DataTable