小颖传奇1.76特色服

散人公益,自由交易,

   ::  ::  ::  ::  :: 管理

protected void Button3_Click(object sender, EventArgs e)
    {
        int i=0;
            foreach (ListItem li in CheckBoxList1.Items)
            {
                if (li.Selected)
                    i += 1;
            }
            if (i > CheckBoxList1.Items.Count / 2)
            {
                foreach (ListItem li in CheckBoxList1.Items)
                {
                    li.Selected = false;
                }
            }
            else
            {
                foreach (ListItem li in CheckBoxList1.Items)
                {
                    li.Selected = true;
                }
            }
       
       
    }

posted on 2009-04-18 10:23  xymir  阅读(147)  评论(0)    收藏  举报