遍历GridView的行,查找你的选择按钮控件,通过被选中的那个控件获取所在行的索引,然后GridVIew.Rows[索引].Cells[0].Value 就是你要的值了
建议你最好将要读取的信息放入lable或者literal,之后在后台用this.GridView1.Rows[index].FindControl("control id")的方式来找到该控件,然后再获取值。 像你开始的形式当列顺序等发生改变时就不得不改代码了。
protected void GridView1_RowDataBound(object sender, GridViewRowEventArgs e)
{
if (e.Row.RowType == DataControlRowType.DataRow)
{
if (e.Row.RowState == DataControlRowState.Normal || e.Row.RowState == DataControlRowState.Alternate)
{
string product_intro = e.Row.Cells[6].Text.Trim();
string product_action=e.Row.Cells[4].Text.Trim();
}
}
}
e.row.cells[].text.trim(); []中的就是你行数
datagridview1.SelectedRows[0].Cells["col0"].ToString();