GridView 中的超级链接查看详细页
在GridView中放个HyperLinkField列
DataSet ds = new DataSet();
this.GridView1.DataSource = ds;
this.GridView1.DataKeyNames = new string[] { "id" }; //DataKeyNames 属性指定表示数据源主键的字段
this.GridView1.DataBind();
点击链接进入详细页后
string sql = "select * from tb where id ='" + Request["id"].ToString() + "'"; 来获得ID 值
DataRowView dv = ds.Tables["tb"].DefaultView[0];
将dv["数据库字段"]赋值给需要数据的控件的属性来显示数据库的信息