If you need to put the content of a list of List<string> in a textbox here is a simple way to do it.
c#, .net, asp.net, source code, info,
c#, .net, asp.net, source code, info,
bool isAnyItemSelected = cblCheckBoxList.Items.Cast<ListItem>().Any(x=>x.Selected == true);
Comments
Post a Comment