CheckBox复选框选中内容显示2018-12-04 本文已影响0人 青春的天空007 String str = " "; foreach (ListItem item in CheckBoxList1.Items) { if (item.Selected) { str = item.Text + "," + str; } } label.Text = str;