求助模糊查询问题
这是源码:SqlConnection conn = db.condb();
SqlDataAdapter sdr = new SqlDataAdapter();
sdr.SelectCommand = new SqlCommand("select * from news where id like '%" +this.TextBox1.Text.Trim()+"%'",conn);
DataSet ds = new DataSet();
sdr.Fill(ds,"view");
DataGrid1.DataSource = ds.Tables["view"];
DataGrid1.DataKeyField = "id";
DataGrid1.DataBind();
我测测的时候 点击搜索按钮 datagrid 里显示是空白的 请问我哪里写的不对?
另外我如果判断没有查询的数据应该怎么写?
[此贴子已经被作者于2007-10-30 14:50:03编辑过]