GridView单元格的单元格索引

时间:2011-09-20 11:01:07

标签: asp.net

我是.Net的新手。我想知道如何获取单元格的索引就像访问GridView后获取行的行索引一样。

1 个答案:

答案 0 :(得分:0)

通过获取对行的引用并遍历其单元格来访问单元格。

例如,假设您正在处理RowDataBound事件,这就是您访问单元格的方式:

 protected void CustomersGridView_RowDataBound(Object sender, GridViewRowEventArgs e)
  {

    if(e.Row.RowType == DataControlRowType.DataRow)
    {

      //e.Row.RowIndex will tell you the current row index
      foreach (TableCell cell in e.Row.Cells)
      {
            //do something with the cell
      }

    }

  }