怎么在数据库里查找相同城市的人,然后在listbox里显示啊
怎么在数据库里查找相同城市的人,然后在listbox里显示啊
SqlConnection meteor = new SqlConnection(System.Configuration.ConfigurationManager.AppSettings["meteor"]);
meteor.Open();
string city =this.TextBox1.Text;
SqlCommand comm = new SqlCommand("select * from studentinformation where native like '% "+ city +"% '",meteor);
ListBox1.DataSource = comm.ExecuteReader();
ListBox1.DataTextField = "studentname";
ListBox1.DataValueField = "studentnum";
ListBox1.DataBind();
meteor.Close();
这样不对吗?为什么没有显示啊
[[it] 本帖最后由 晋加答 于 2008-4-6 13:29 编辑 [/it]]