string str="select * from 学生信息 where 学号 like '%"+this.textBox9.Text.Trim()+"%'";DataTable dt=dataSet11.Tables [0];dataSet11.学生信息.Clear();dataGrid1.DataSource =dt;怎么把查询后的数据显示在dataGrid1上呢?能不能帮我修改上面这一段代码?我都是采用控件写的
3 回答
HUX布斯
TA贡献1876条经验 获得超6个赞
SqlConnection con = new SqlConnection();
//con.ConnectionString = "Data Source=IT14;Initial Catalog=GIS_FX;User ID=sa;Password=it2";
con.ConnectionString = "Data Source=IT14;database=GIS_FX;User ID=sa;Password=it2";
con.Open();
SqlCommand cmd = new SqlCommand(/*SQL语句*/);
SqlDataReader dr = cmd.ExecuteReader();
GridView1.DataSource = dr;
GridView1.DataBind();
添加回答
举报
0/150
提交
取消