CheckBox复选框选中内容显示

String str = " ";

        foreach (ListItem item in CheckBoxList1.Items)

        {

            if (item.Selected)

            {

                str = item.Text + "," + str;

            }

        }

        label.Text = str;

你可能感兴趣的:(CheckBox复选框选中内容显示)