我在GridView
. 当我单击保存按钮时,我会检查选中复选框以将记录保存在 dbms 中的代码。但Checkbox.checked
财产永远是false
。
foreach (GridViewRow row in GridView1.Rows)
{
CheckBox chbx = (CheckBox)row.FindControl("chk1");
if (chbx.Checked)
{
// ...
}
}
但是它在 Mozilla 中运行良好,但在 IE 中却不行。