asp.net如何让CheckBox1使CheckBoxList1全选 就是说选中CheckBox1 CheckBoxList1里面的所有项全部选中
展开全部
先将CheckBox1 的AutoPostBack设置为true,然后增加CheckedChanged事件:
protected void CheckBox1_CheckedChanged(object sender, EventArgs e)
{
foreach (ListItem item in this.CheckBoxList1.Items)
{
item.Selected = true;
}
}
protected void CheckBox1_CheckedChanged(object sender, EventArgs e)
{
foreach (ListItem item in this.CheckBoxList1.Items)
{
item.Selected = true;
}
}
追问
你说的可以是可以。
但是当CheckBox1 取消是。
就没反应了。
就是点两下CheckBox1 时
CheckBoxList1还是全被选中的
还有只能用 foreach 吗 是否可以用其他的代替!
追答
嗯,这个是我的疏忽,遍历中这句:
item.Selected = true;
改为:
item.Selected = CheckBox1.Checked;
对于集合,推荐使用foreach 遍历,也可使用for
for(int i=0; i<Items.Count;i++)
{
//do something
}
推荐律师服务:
若未解决您的问题,请您详细描述您的问题,通过百度律临进行免费专业咨询