[导入]循环增加checkboxlist的选项

[导入]循环增加checkboxlist的选项

循环增加checkboxlist的选项

public void  SelectListIndex(ListControl lc,string values)
        {
            string[] tempValues = values.Split(',');
            if (tempValues.Length > 0)
            {
                foreach (string tempvalue in tempValues)
                   lc.Items.Add(new ListItem(tempvalue ,tempvalue ));
            }
          
        }


文章来源: http://www.cnblogs.com/wangdetian168/archive/2010/08/24/checkboxlist-item.html

你可能感兴趣的:([导入]循环增加checkboxlist的选项)