如何获得此复选框索引

时间:2010-07-03 13:49:31

标签: c# asp.net gridview checkbox

如何获取置于gridview

内的复选框的位置/索引
                GridViewRow headerrow=GrdDynamicControls.HeaderRow;
                TableCell tb = headerrow.Cells[i];
                string strheaderrow = tb.Text;

                if (strheaderrow.Contains( strColumnName))
                {
                 bool val = ((CheckBox)GrdDynamicControls.Rows[i].FindControl("chkStatus")).Checked;
                }

如何获取此复选框索引?/?

任何帮助请...

1 个答案:

答案 0 :(得分:0)

您可以使用Event Args e

  

e.Item.ItemIndex

它将返回一个整数

希望这会有所帮助