newbi to .Net code;如果有人能回答这个相当容易的问题,我感激不尽我确保SQL命令返回数据,但我不能让它填充并显示数据网格。
这是代码
cmd.Connection = conn;
SqlDataAdapter sda = new SqlDataAdapter(cmd);
//DataTable dt = new DataTable();
var dt = new DataSet();
sda.Fill(dt);
//DataGrid GV1 = new DataGrid();
//Response.Write(ds.Rows[0][0].ToString());
//GV.DataSource = dt;
GV.DataSource = dt.Tables[0];
GV.DataBind();
Response.Write("Hello");