1
votes
votes
1 answers
how to use a for each to determine whether each list item is checked
[code]List<string> checks = new ListBox<string>(); foreach (Control c in this.panAll.Controls) { if (c is ListItem) { if (((ListItem)c).???? == checked))) { checks.add(&quo ...
