无法判断checkbox是否选中
代码是:
protected void move_Click(object sender , System.EventArgs E)
{
CheckBox rem;
foreach( DataGridItem p_item in datagrid1.Items)
{
rem=(CheckBox)p_item.FindControl("rm");
if(rem.Checked==true)
{
p_result.Text=p_item.Cells[1].Text.ToString();
}
}
}
选中一个点击过move时,没反应p_result文本框中没有显示,点击后选框中的对号没有了,是不是点击后自动刷新成未选中状态,checkbox有autopostback已设false