我需要获取 GridView 的单元格的值。当用户点击网格时,我需要知道是哪一行按钮,然后获取单元格的值。我正在尝试使用以下代码,但不起作用。
protected void gvSearch_RowCommand(object sender, GridViewCommandEventArgs e)
{
if (e.CommandName == "Select")
{
int row = Convert.ToInt32(e.CommandArgument);
string tst = gvSearch.Rows[row].Cells[1].Text;
}
}
我不知道我是否使用正确的事件来实现我的目标。如果有人可以帮助我,我会感谢你。