使用Web服务的AJAX Auto Complete Extender

时间:2013-06-24 06:06:04

标签: c# asp.net ajax

我对C Sharp非常陌生。在我的项目中,我正在设计一个搜索页面,我在其中使用带有AJAX Control Auto Extender的文本框,我正在使用Web服务来填充文本框(这是我第一次使用Web服务我不知道是什么当用户在文本框中键入Word时,将使用Web服务。我已经正确指定了所有内容,当我运行我的程序并输入Word时没有响应。

这个问题可能看起来像是一个重复的问题,但是我没看过很多时候看过许多博客都在那里展示的例子,但没有结果。请有人帮帮我,

我的网络服务代码是,

    using System;
    using System.Collections.Generic;
    using System.Linq;
    using System.Web;
    using System.Web.Services;
    using System.Data;
    using System.Data.SqlClient;
    using SubSonic;
    using DataAccessLayer;
    using System.Web.Configuration;

   using System.Web.Services.Protocols;
   using System.Xml.Linq;
   [WebService(Namespace = "http://tempuri.org/")]
   [WebServiceBinding(ConformsTo = WsiProfiles.BasicProfile1_1)]
   [System.Web.Script.Services.ScriptService]
   public class Search : System.Web.Services.WebService
   {

     public void Autocomplete()
     {


    //Uncomment the following line if using designed components
    //InitializeComponent();
     }

     [WebMethod] 
   public string[] GetCompletionList(string prefixText, int count) 
    { 
      if (count == 0) 
    { 
        count = 10; 
     } 
     DataTable dt = GetRecords(prefixText); 
    List<string> items = new List<string>(count); 

   for (int i = 0; i < dt.Rows.Count; i++) 
    { 
        string strName = dt.Rows[i][0].ToString(); 
        items.Add(strName); 
    } 
    return items.ToArray(); 
  } 

public DataTable GetRecords(string strName) 
{ 
    string QueryString;
    QueryString = System.Configuration.ConfigurationManager.ConnectionStrings     ["IUMSNXG"].ToString();
    using (SqlConnection obj_SqlConnection = new SqlConnection(QueryString))
    {
        using (SqlCommand obj_Sqlcommand = new SqlCommand())
        {
            obj_Sqlcommand.CommandType = CommandType.StoredProcedure;
            obj_Sqlcommand.CommandText = "LRS_SP_CBFM_Sel";
            obj_Sqlcommand.Connection = obj_SqlConnection;
            obj_SqlConnection.Open();

            obj_Sqlcommand.Parameters.AddWithValue("@animalCode", strName);
            SqlDataAdapter dt = new SqlDataAdapter(obj_Sqlcommand);
            DataSet ds=new DataSet();
            dt.Fill(ds);
            obj_SqlConnection.Close();
            return ds.Tables[0];
          }
       }

    } 
  }

我的AJAX工具脚本管理器是

   <asp:ToolkitScriptManager ID="ToolkitScriptManager1" runat="server">
    <Services>
        <asp:ServiceReference Path="~/Search.asmx" />
    </Services>
</asp:ToolkitScriptManager>

我的文本框和自动完成扩展器是,

 <Anthem:TextBox ID="srchtxt" runat="server" AutoUpdateAfterCallBack="true" 
                Height="19px" Width="200px"></Anthem:TextBox>
            <asp:AutoCompleteExtender ID="srchtxt_AutoCompleteExtender" runat="server" 
                CompletionInterval="100" DelimiterCharacters="" Enabled="True" 
                 ServicePath="~/Search.asmx" 
                TargetControlID="srchtxt" UseContextKey="True" 
                ServiceMethod="GetCompletionList">
            </asp:AutoCompleteExtender>

1 个答案:

答案 0 :(得分:-1)

这种情况正在发生,因为在GetCompletionList(string prefixText, int count)的代码隐藏文件中,您正在使用两个参数,而在.aspx页面中,您正在调用此方法而不使用像ServiceMethod="GetCompletionList"这样的参数。 如果您从GetCompletionList()中删除参数,那么您的代码就可以使用。

我知道您需要参数string prefixText。此变量prefixText只是在文本框中输入的值,用于从数据库中获取数据,以便相应地为您提供数据。 因此,不要在查询中使用此参数值,只需使用文本框值select * from table where name like '%textbox.Text%'