[求助]datagrid模版列中button事件问题
(往下看哦,问题在7楼!)请高手来看看这段代码哦!
private void Btnchaxun2_Click(object sender, System.EventArgs e)
{
SqlConnection con=new SqlConnection("server=localhost; database=wkm001; uid=sa; pwd=");
con.Open();
SqlCommand com=new SqlCommand("select * from message" , con);
SqlDataReader dr=com.ExecuteReader();
if(dr.Read())
{
// DDLlistshow();
// TextBoxshow();
// Response.Write("dr['uid']");
DataGrid DGlist=new DataGrid();
DGlist.DataSource=dr;
DGlist.DataBind();
dr.Close();
com.Dispose();
con.Close();
}
}
我试着注释里的代码运行,也可以正常显示。就是datagrid没有绑定。这是为啥啊??
[此贴子已经被作者于2006-10-11 12:08:43编辑过]