gpt4 book ai didi

c# - 来自数据库的自动完成文本框

转载 作者:太空狗 更新时间:2023-10-29 21:46:28 24 4
gpt4 key购买 nike

我需要我的文本框在用户键入时自动完成。该值应来自数据库。我正在使用文本框的 textchange 属性。

protected void autocomplete(object sender, EventArgs e)
{
string query = "Select area,codes from tbl_pincode";
SqlConnection conn = new SqlConnection("Data Source=win2008-2;Initial Catalog=h1tm11;User ID=sa;Password=#1cub3123*;Persist Security Info=True;");
SqlCommand com = new SqlCommand(query, conn);
conn.Open();
SqlDataReader dr = com.ExecuteReader();
while (dr.Read())
{
zipcode.Text = dr.GetValue(0).ToString();
}
conn.Close();
}

但是我没有得到想要的结果。有什么想法吗?

最佳答案

您是否看过使用 jquery ui 自动完成组件?您可以将其连接到远程数据源

http://jqueryui.com/demos/autocomplete/

关于c# - 来自数据库的自动完成文本框,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/8926223/

24 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com