AutoComplete没有效果的解决方案

       最近在帮办公室的同事做一个图书管理系统,其中单位200多号人,进行图书借阅的时候,需要快速查询人名,这里我采用了开心网和人人网上通用的方式,通过名字拼音的首字母来快速定位人名。下面是我的解决方案,部分参考了网上其他人的做法,这里对他们的劳动成果表示由衷的感谢!

      1、在数据库中创建汉字转字母的函数(我的数据库是SQL Server 2005,其他数据库可Google一下即可)

                 set ANSI_NULLS ON set QUOTED_IDENTIFIER ON go CREATE function [dbo].[f_GetPy](@str nvarchar(4000)) returns nvarchar(4000) as begin declare @strlen int,@re nvarchar(4000) declare @t table(chr nchar(1) collate Chinese_PRC_CI_AS,letter nchar(1)) insert into @t(chr,letter) select '吖 ', 'A ' union all select '八 ', 'B ' union all select '嚓 ', 'C ' union all select '咑 ', 'D ' union all select '妸 ', 'E ' union all select '发 ', 'F ' union all select '旮 ', 'G ' union all select '铪 ', 'H ' union all select '丌 ', 'J ' union all select '咔 ', 'K ' union all select '垃 ', 'L ' union all select '嘸 ', 'M ' union all select '拏 ', 'N ' union all select '噢 ', 'O ' union all select '妑 ', 'P ' union all select '七 ', 'Q ' union all select '呥 ', 'R ' union all select '仨 ', 'S ' union all select '他 ', 'T ' union all select '屲 ', 'W ' union all select '夕 ', 'X ' union all select '丫 ', 'Y ' union all select '帀 ', 'Z ' select @strlen=len(@str),@re= ' ' while @strlen> 0 begin select top 1 @re=letter+@re,@strlen=@strlen-1 from @t a where chr <=substring(@str,@strlen,1) order by chr desc if @@rowcount=0 select @re=substring(@str,@strlen,1)+@re,@strlen=@strlen-1 end return(@re) end

           将上面的SQL语句执行,就在你的数据库中创建了一个名字为f_GetPy的函数。该函数,就是获取把数据库中的,每个汉字拼音的首字母。

      2、在你的解决方案中,右键项目,添加新项-Web服务。

           这样在你的项目中就添加了一个WebService.asmx(默认名称)的Web服务,在WebService.asmx里面添加如下代码:

               [WebService(Namespace = " http://tempuri.org/")] [WebServiceBinding(ConformsTo = WsiProfiles.BasicProfile1_1)] [ToolboxItem(true)] [System.Web.Script.Services.ScriptService] public class Employee : System.Web.Services.WebService { public Employee() { } [WebMethod] [System.Web.Script.Services.ScriptMethod] public string[] GetEmployeeList(string prefixText, int count) { SmartQuiz.BLL.User user = new SmartQuiz.BLL.User(); string sql = "dbo.f_GetPy(username) like '%" + prefixText + "%'"; DataSet thisDataset = user.GetList(sql); List<string> res = new List<string>(count); foreach (DataRow theRow in thisDataset.Tables[0].Rows) { res.Add(theRow["username"].ToString()); } return res.ToArray(); } }

          其中这里面特别需要注意的是:

          (1)必须添加类的修饰--[System.Web.Script.Services.ScriptService]

          (2)必须添加方法的修饰--[System.Web.Script.Services.ScriptMethod]

          (3)必须保证参数“string prefixText, int count” 这两个参数的类型和名字必须跟上述代码中的完全一致 。

      3、在测试页面(如Default.aspx)中添加Web控件,代码如下:

               <td> <asp:TextBox ID="TextBox2" runat="server"></asp:TextBox> <cc1:AutoCompleteExtender ID="AutoCompleteExtender1" runat="server" TargetControlID="TextBox2" ServicePath="Employee.asmx" ServiceMethod="GetEmployeeList" MinimumPrefixLength="1" CompletionInterval="100" EnableCaching="true" CompletionSetCount="12" UseContextKey="true"> </cc1:AutoCompleteExtender> </td>

      4、运行程序进行调试,如果安装我说的一定会正常运行。Good luck ~

你可能感兴趣的:(sql,数据库,autocomplete,webservice,server,String,textbox)