从文本框中搜索并根据Asp.net中的会话突出显示GridView

时间:2014-03-20 09:21:56

标签: c# .net search

嘿伙计们我正试图从文本框中搜索文本改变了evet并使用会话突出显示gridview ..

我在数据库中有一个表,其中包含ShowroomId,Customer_name,PenDriveNo等行。陈列室ID是我用session["user"]存储的showrrom登录名。

我希望当我从文本框中搜索时,我只想要显示那些特定的会话数据,就像我使用陈列室ID'英雄'登录一样,那么只有在从文本框搜索时才会显示行数据。

我试过这段代码

protected void TextBox1_TextChanged(object sender, EventArgs e)
{
    SqlConnection con1 = new SqlConnection(ConfigurationManager.ConnectionStrings["ConnectionString"].ConnectionString);
    SqlCommand cmd1;
    SqlDataAdapter da1;
    DataSet ds1;
    cmd1 = new SqlCommand("select * from tblshowroom where ShowroomId='"+Session["users"]+"' and Customer_Name Like'" + TextBox1.Text + "%' or PenDriveNo Like'" + TextBox1.Text + "%'", con1);
    da1 = new SqlDataAdapter(cmd1);
    ds1 = new DataSet();
    da1.Fill(ds1);
    GridView1.DataSource = ds1;
    GridView1.DataBind();                
}

但这件事情并没有发生。 **当我登录时,会话完美运行只显示session["users"]数据,但在文本框搜索中显示所有数据

提前致谢.....

0 个答案:

没有答案