GridView和CheckBox结合使用的问题
protected void btnTest_Click(object sender, EventArgs e){
int intTest = 0;
for (int j = 0; j < gvTest.Rows.Count; j++)
{
CheckBox CB = (CheckBox)gvTest.Rows[j].FindControl("cbTest");
if (CB.Checked)
{
intTest = intTest + 1;
CB.Checked = true;
}
}
}
上面cbTest是GridView中定义的CheckBox,gvTest是cbTest所在的GridView,可是不管cbTest有没有勾选,CB.Checked一直都是false,不知道是什么原因,我上网查了,好多地方都说GridView中操作CheckBox就是这样的呀,那位高手帮我看看啊,谢谢!!!