如何在GridView中获取所选行的第一列值

时间:2015-03-04 15:06:27

标签: c# asp.net gridview

我有一个GridView

如何获取给定行的列值。

我尝试了以下操作,但它只提供行号而不是值:

int selRowIndex = ((GridViewRow)(((System.Web.UI.WebControls.CheckBox)sender).Parent.Parent)).RowIndex;

1 个答案:

答案 0 :(得分:2)

您正在寻找索引

的内容
var cellText= ((GridViewRow)(((System.Web.UI.WebControls.CheckBox)sender).Parent.Parent)).Cells[0].Text;

然后将其转换为int