1

我有一个文本框,我已将 AJAX AutocompleteExtender 添加到此.. 代码如下.. 来自:

并且是我添加的 CS 文件文件

[System.Web.Services.WebMethodAttribute(), System.Web.Script.Services.ScriptMethodAttribute()]
    public static string[] GetCompletionList(string prefixText, int count, string contextKey)
    {
        string connString = ConfigurationManager.ConnectionStrings["Station"].ToString();

        string selectString = "SELECT *from Station";

        List<String> CustList = new List<string>(count);
        using (SqlConnection sqlConn = new SqlConnection(connString))
        {
            sqlConn.Open();

            using (SqlCommand sqlCmd = new SqlCommand(selectString, sqlConn))
            {
                SqlDataReader reader = sqlCmd.ExecuteReader();
                while (reader.Read())
                    CustList.Add(reader["DBRT"].ToString());//DBRT is the Column name

            }
        }
        return (CustList.ToArray());
    }

当我执行代码并输入时,我输入时它没有显示任何内容。我的代码有什么问题..

4

1 回答 1

0

如果不使用网络服务,我会这样做。如果需要,您也可以使用 Web 服务。我没有返回字符串数组,而是返回通用列表。

在 Aspx 文件中

您可以根据自己的需要更改Ajax控件的标签Perfix,在我的系统中Ajax控件标签perfix从asp开始。

<asp:ScriptManager ID="ScriptManager1" runat="server"
EnablePageMethods = "true">
</asp:ScriptManager>

<asp:TextBox ID="StationSearchTxtBox" runat="server"></asp:TextBox>
<asp:AutoCompleteExtender ServiceMethod="GetCompletionList"
    MinimumPrefixLength="2"
    CompletionInterval="100" EnableCaching="false" CompletionSetCount="10"
    TargetControlID="StationSearchTxtBox"
    ID="AutoCompleteExtender1" runat="server" FirstRowSelected = "false">
</asp:AutoCompleteExtender>

在 CS 文件中

[System.Web.Script.Services.ScriptMethod()]
[System.Web.Services.WebMethod]

public static List<string> GetCompletionList(string prefixText, int count)
    {

using (SqlConnection conn = new SqlConnection())
    {
       string connString =    ConfigurationManager.ConnectionStrings   ["Station"].ToString();

        using (SqlCommand cmd = new SqlCommand())
        {
            cmd.CommandText = "select StationName from Stations where " +
            "StationName like @SearchStation + '%'";
            cmd.Parameters.AddWithValue("@SearchStation", prefixText);
            cmd.Connection = conn;
            conn.Open();
            List<string> stations= new List<string>();
            using (SqlDataReader sdr = cmd.ExecuteReader())
            {
                while (sdr.Read())
                {
                    customers.Add(sdr["StationName"].ToString());
                }
            }
            conn.Close();
            return stations;
        }
    }

完全希望这段代码能给你解决问题的方法。

于 2012-06-23T01:16:59.057 回答