CheckBoxList clbox = new CheckBoxList();clbox.Items.Add(new ListItem("text", "value"));//选中新增加的项clbox.Items[clbox.Items.Count-1].Selected = true;