<asp:CheckBoxList runat="server" id="chkList"></asp:CheckBoxList>
chkList.SelectedValue; // to get the selected value chkList.SelectedItem.Value; // to get the selected value chkList.SelectedItem.Text; // to get the selected text
foreach (ListItem item in chkList.Items) { if (item.Selected) { string value = item.Value; // will get all that is checked, you can concatenate here } }
Regards, Raja, USA
Thanks and Regards, GokulNath Nithy.
LP MER
Login to post response