在GridView中獲取選中行的值可以通過以下步驟實現:
以下是一個示例代碼,演示如何獲取GridView中選中行的值:
protected void GridView1_SelectedIndexChanged(object sender, EventArgs e)
{
// 獲取選中行
GridViewRow selectedRow = GridView1.SelectedRow;
// 獲取選中行中的單元格
TableCellCollection cells = selectedRow.Cells;
// 獲取單元格的值
string value1 = cells[0].Text; // 第一列的值
string value2 = cells[1].Text; // 第二列的值
// ...
}
請注意,如果GridView啟用了分頁,只能獲取當前頁面上選中行的值。如果需要獲取所有選中行的值,可以考慮使用循環遍歷GridView中的所有行,并檢查每一行是否被選中。