repeater中如何判断checkbox是否被选中并取出选中行的数据?

2024年11月20日 04:29
有1个网友回答
网友(1):

repeater进行循环判断
foreach(RepeaterItem ri in Repeater1.Items)
{
CheckBox cb=ri.FindControl("chkChoose") as CheckBox;
if(cb!=null)
{
if(cb.Checked)
return cb.value;
}
}