网站导航免费论文 原创论文 论文搜索 原创论文 网学软件 学术大家 资料中心 会员中心 问题解答 原创论文 大学论文导航 设计下载 最新论文 下载排行 原创论文 论文源代码
返回网学首页
网学联系
最新论文 推荐专题 热门论文 素材专题
当前位置: 网学 > 编程文档 > ASP.net > 正文

自动填充控件AutoCompleteExtender控件实现代码

来源:http://myeducs.cn 联系QQ:点击这里给我发消息 作者: 用户投稿 来源: 网络 发布时间: 14/02/25

鉴于大家对ASP.net十分关注,我们编辑小组在此为大家搜集整理了“自动填充控件AutoCompleteExtender控件实现代码”一文,供大家参考学习

AutoCompleteProperties的属性包括

属性名称属性描述备注
TargetControlID指定要控制的控件的ID一般为TextBox的ID
ServicePath处理智能选择列表的Web Services路径 
ServiceMethod处理智能选择列表的网络服务服务该方法一般包含两个参数(string prefixText, int count)
Enabled是否可用 
MinimumPrefixLength最小前缀的长度大小当输入长度达到最小的时候,便提供智能选择

一、查看web.config文件中是否存在如下配置(倘若没有请添加): 

 <system.web>
<httpHandlers>
      
<remove verb="*" path="*.asmx"/>
      
<add verb="*" path="*.asmx" validate="false" type="System.Web.Script.Services.ScriptHandlerFactory, System.Web.Extensions, Version=1.0.61025.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35"/>
      
<add verb="*" path="*_AppService.axd" validate="false" type="System.Web.Script.Services.ScriptHandlerFactory, System.Web.Extensions, Version=1.0.61025.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35"/>
      
<add verb="GET,HEAD" path="ScriptResource.axd" type="System.Web.Handlers.ScriptResourceHandler, System.Web.Extensions, Version=1.0.61025.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35" validate="false"/>
    
</httpHandlers>
 
<system.web>



二、代码如下:

2_SimpleList_AutoComplete_DragandDrop.aspx文件

<%@ Page Language="C#" AutoEventWireup="true" CodeFile="2_SimpleList_AutoComplete_DragandDrop.aspx.cs"
    Inherits
="_2_SimpleList_AutoComplete_DragandDrop" %>

<%@ Register Assembly="System.Web.Extensions, Version=1.0.61025.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35"
    Namespace
="System.Web.UI" TagPrefix="asp" %>
<%@ Register Assembly="AjaxControlToolkit" Namespace="AjaxControlToolkit" TagPrefix="asp" %>
<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd">
<html xmlns="http://www.w3.org/1999/xhtml">
<head runat="server">
    
<title>Untitled Page</title>
</head>
<body>
    
<form id="form1" runat="server">
        
<div>
            
<asp:ScriptManager ID="ScriptManager1" runat="server">
                
<Services>
                    
<asp:ServiceReference Path="WebServiceSearchName.asmx" />
                
</Services>
            
</asp:ScriptManager>
            
<asp:TextBox runat="server" ID="TextBoxInput" Width="300" autocomplete="off" />
            
<asp:AutoCompleteExtender runat="server" ID="AutoCompleteExtender1" TargetControlID="TextBoxInput"
                ServicePath
="webservicesearchname.asmx" ServiceMethod="GetCompletionList" MinimumPrefixLength="1"
                CompletionInterval
="100" EnableCaching="true" CompletionSetCount="12" />
        
</div>
    
</form>
</body>
</html>

本新闻共3页,当前在第1页  1  2  3  

网学推荐

免费论文

原创论文

设为首页 | 加入收藏 | 论文首页 | 论文专题 | 设计下载 | 网学软件 | 论文模板 | 论文资源 | 程序设计 | 关于网学 | 站内搜索 | 网学留言 | 友情链接 | 资料中心
版权所有 QQ:3710167 邮箱:3710167@qq.com 网学网 [Myeducs.cn] 您电脑的分辨率是 像素
Copyright 2008-2015 myeducs.Cn www.myeducs.Cn All Rights Reserved 湘ICP备09003080号