做的一个web的模糊查询,比如查"啊" 只要有"啊"这个字的所有人就会出来,但是在“啊”后面加个空格,就查不到了。。我把代码贴出来,求教。。。
if (txt_search.Text.Trim() == "") { DBUtility.AspHelper.ShowMessageToPage(Response, "请输入查找信息", "index.aspx"); } else { string sql = "SELECT * FROM [Address_Book].[dbo].[Address_Book] where 姓名 like'%" + txt_search.Text + "%'"; DataSet ds = db.GetDataSet(sql, CommandType.Text); GridView1.DataSource = ds; GridView1.DataBind(); }
txt_search.Text.Trim()
谢谢啊-。-忘记了。。真的太傻了。看来还是不够熟练。。
学习了,谢谢