我gridview
有autogeneratecolumns = true
并且我想获取用户单击gridview
单元格的特定列索引值。如果用户点击第三行第五列的单元格,那么它将显示第三行和第五列的标题文本。如何获取特定的列索引值。请帮帮我。
protected void GridView1_SelectedIndexChanged(object sender, EventArgs e)
{
Label1.Text = "RowHeader - " + GridView1.SelectedRow.Cells[0].Text + " and ColumnHeader - " + GridView1.HeaderRow.Cells[0].Text;
}