一聚教程网:一个值得你收藏的教程网站

热门教程

怎么判断dataGrid里的复选框被选中

时间:2022-06-30 10:42:56 编辑:袖梨 来源:一聚教程网

1: wj2929(*ヤRěйヤ*) ( ) 信誉:100
CheckBox cb=(CheckBox)Datagrid.Items[行].Cells[列].Controls[1];
bool b=cb.Checked //这里得到
2: Haogmj() ( ) 信誉:100
foreach(DataGridItem item in DataGrid1.Items)
{
CheckBox chk=((CheckBox)item.Cells[4].FindControl("CheckBox1"));
if(item.Cells[3].Text=="1")
{
chk.Checked=true;
}
}

热门栏目