遍历CheckBoxList的方法(读与写)
很多人可能想不到是遍历ListItem li in chkBoxPro.Items这里的Items
foreach (ListItem li in chkBoxPro.Items)
{
if (li.Value == arrList[i])
li.Selected = true;
}
private string getTotal()
{
int totalNum = 0;
for (int i = 0; i < chkBoxPro.Items.Count; i++)
{
if (chkBoxPro.Items[i].Selected)
{
totalNum += 1;
}
}
return totalNum.ToString();
}
{
if (li.Value == arrList[i])
li.Selected = true;
}
private string getTotal()
{
int totalNum = 0;
for (int i = 0; i < chkBoxPro.Items.Count; i++)
{
if (chkBoxPro.Items[i].Selected)
{
totalNum += 1;
}
}
return totalNum.ToString();
}
我这个博客废弃不用了,今天想寻找外链的时候,突然想到这个博客权重很高。
有需要免费外链的,留言即可,我准备把这个博客变成免费的友情链接站点。