- привязать событие к кнопке,
- выполнить итерацию через свойство
Items
CheckBoxList
- установить текстовое значение в соответствии со свойством
selected
listitem
например:
protected void button_Click(object sender, EventArgs e)
{
foreach (ListItem item in theCheckBoxList.Items)
{
item.Text = item.Selected ? "Checked" : "UnChecked";
}
}
, чтобы добавить значение, которое вы можете сделать:
foreach (ListItem item in theCheckBoxList.Items)
{
item.Text = item.Selected ? item.Value : "";
}
или отобразить все значения в мини-отчете:
string test = "you've selected :";
foreach (ListItem item in theCheckBoxList.Items)
{
test += item.Selected ? item.Value + ", " : "";
}
labelResult.Text = test;