请教一个问题
在写一个查询 程序过程中 遇到的问题. 输入数字没问题可以查询,但是输入文字和字母就会黄页.如何去设置一些语句. string command = "SELECT * FROM book1";
if (this.txtID1.Text != "")
{
command = command + " WHERE 图书名称=N'" + txtID1.Text + "'";
SqlDataAdapter sad = new SqlDataAdapter(command, cn);
DataSet data = new DataSet();
sad.Fill(data, "book1");
this.GridView1.DataSource = data.Tables[0];
this.GridView1.DataBind();
this.txtID1.Text = "";
}
else
{
txtID1.Text = "没有此项输入法!!";
}