0
我是.Net的新手。我想知道如何獲取單元格的索引,就像訪問GridView後獲取一行的行索引一樣。GridView單元格的單元格索引
我是.Net的新手。我想知道如何獲取單元格的索引,就像訪問GridView後獲取一行的行索引一樣。GridView單元格的單元格索引
通過獲取對該行的引用並遍歷其單元格來訪問單元格。
說,例如,你正在處理的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
}
}
}
你行索引的方式相同。 – adatapost