blah blah blah is here! blah blah » Close

1
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 ...

0
votes
0 answers

reading controls that were added programatically

I am trying to display a checkbox list based on the data read from a database. Based on the query results, there will be a different number of checkbox items in the checkboxlist each time. This program succesfully displays the checkboxlist, ...

Feedback