给你个思路:
1、页面一加载能看到所有的信息:在protected void Page_Load(object sender, EventArgs e)方法里面select * from table(你的数据表),不加where条件,将gridview绑定到里面;
2、输入文本框时用select * from article where artitle like %artitle%取出特定数据,再绑定gridview
可以选择重新绑定数据源
在你的page-load事件中 绑定(查找所有)为数据源
然后在你的 TextBox1_TextChanged这个事件里重新绑定一下数据库 它的数据源为你那个模糊查询的sql语句