this.GridView1.Rows[?????].Cells[0].Text; ????出应该是什么?谢谢问题补充: String a = this.GridView1.Rows[GridView1.SelectedIndex].Cells[0].Text; this.Label1.Text = a; 无法编译通过啊 我说的值不是所在列的行数,是查询结果中的值 我说个例子吧 table id ,name ,age 1 aa 23 2 bb 21 做个gridview ,把控件的选择、排序选好,在放个DetailsView 控件 数据源 为 select * from table order by id 用 protected void Page_Load(object sender, EventArgs e) { this.DetailsView1.PageIndex = this.GridView1.SelectedIndex; } 使2个控件联动,但是如果在gridview上用age排序后,GridView1的选择和DetailsView1的不一样了,因为顺序重排了 现在我想问GridView1重新排序后怎么使DetailsView1不出错 ,还有我点 2 bb 21 这行数据前的选择按钮时,怎么得到 name列的值(重新排序后使结果仍然正确) 给2张图 http://images.cnblogs.com/cnblogs_com/bo8888/79069/r_001.jpg http://images.cnblogs.com/cnblogs_com/bo8888/79069/r_002.jpg 第1张为原始的 002为按其它列排序后的结果
- 2 回答
- 0 关注
- 510 浏览
添加回答
举报
0/150
提交
取消