Ajax自动完成扩展程序不工作的数字自动完成
本文关键字:数字 工作 扩展 Ajax 程序 | 更新日期: 2023-09-27 18:15:37
我的ASPX Code:
<asp:TextBox ID="txtCollectionCode" runat="server" CssClass="txt" />
<asp:AutoCompleteExtender ID="AutoCompleteCollectionCode" runat="server" TargetControlID="txtCollectionCode" MinimumPrefixLength="1" EnableCaching="true" CompletionSetCount="1" CompletionInterval="100" ServiceMethod="GetCollectionCode" />
背后的代码:
public static List<string>GetCollectionCode(string prefixText)
{
string constr = ConfigurationManager.ConnectionStrings["ConnectionString"].ToString();
SqlConnection conn = new SqlConnection(constr);
SqlCommand cmd = new SqlCommand("Select Collection_Code From Collections_New WHERE Collection_Code LIKE @Collection_Code+'%'", conn);
SqlDataAdapter adp = new SqlDataAdapter(cmd);
DataTable dt = new DataTable();
adp.Fill(dt);
conn.Close();
List<string> CollectionCodes = new List<string>();
for (int i = 0; i < dt.Rows.Count; i++)
{
CollectionCodes.Add(dt.Rows[i][1].ToString());
}
return CollectionCodes;
}
我的问题:当我必须画名字时,这段代码可以工作。但是,当我尝试从同一个表中绘制collection_codes(例如3001、3002、3003)时,没有自动提示。
任何帮助都将非常感激!谢谢你
我想我明白了。
ListGetCollectionCode(string prefixText){string constr = ConfigurationManager.ConnectionStrings["ConnectionString"].ToString();SqlConnection conn = new SqlConnection(constr);
SqlCommand cmd = new SqlCommand("Select * FROM Collections_New WHERE Collection_Code LIKE '" + prefixText + "%'", conn);
DataSet ds = new DataSet();
SqlDataAdapter dta = new SqlDataAdapter(cmd);
dta.Fill(ds);
conn.Close();
List<string> CollectionCodes = new List<string>();
for (int i = 0; i < ds.Tables[0].Rows.Count; i++)
{
CollectionCodes.Add(ds.Tables[0].Rows[i]["Collection_Code"].ToString());
}
return CollectionCodes;
}