x

开发者

c# .net

导航

//判断CheckBoxList1选中项

       //判断选中项

           /*

                ​int count = 0;
                foreach (ListItem item in this.CheckBoxList1.Items)
                {
                    if (item.Selected)
                    {
                        count++;
                    }
                }
                if (count == 0)
                {
                    Common.MessageBox.Show(this.Page, "必须选择一项变电站");
                    return;
                }
                else
                {

                      sssss

                 }

                  */

posted on 2012-08-12 09:36  开发模式  阅读(1066)  评论(0编辑  收藏  举报

x