[求助]session应用的问题
SqlConnection conn=new SqlConnection("server=localhost; database=WKM001; uid=sa; pwd=");conn.Open();
SqlCommand com=new SqlCommand("select * from person , company where company.uid=person.uid and company.uid='"+ Session["username"]+"'" , conn);
SqlDataReader dr=com.ExecuteReader();
if(dr.Read()) //断点调试的时候 if 以下的都没有运行!!
{
DataGrid DGlist=new DataGrid();
this.DGlist.DataSource=dr;
this.DGlist.DataBind();
dr.Close();
com.Dispose();
conn.Close();
}
这是应用session页面的相关代码,为什么没有绑定datagrid呢?
Session["username"] = TBuid.Text.Trim(); //这是设置session那个页面的相关代码!
Response.Redirect("sessionshowuser.aspx");