Algernon83
Programmer
I was working on a project recently that entailed having a CheckBoxList on a page to represent a number of values. Each of these needed to be checked or unchecked based on an item in the data table used to populate the list. Unfortunately, the only way I could find to do this was the really ugly hack of re-executing the sqlCommand and iterating over the list of rows returned, setting the CheckBox that was generated for that row appropriately. Is there a simpler way to do this?