private string GetCheckedValues(CheckBoxList chkBoxList)
{
IEnumerable<string> selectedValues = chkBoxList.Items.Cast<ListItem>()
.Where(i => i.Selected)
.Select(i => i.Value);
return string.Join("~", selectedValues);
}
{
IEnumerable<string> selectedValues = chkBoxList.Items.Cast<ListItem>()
.Where(i => i.Selected)
.Select(i => i.Value);
return string.Join("~", selectedValues);
}
No comments:
Post a Comment