I have a list box control:
The code behind resembles:
<
Databinding DropDownLists/ListBoxes is painful, because they often bind to the wrong values.
I've given up on using DataBind(), and just resort to using a Foreach loop:
foreach (Item i in DataSet) { listBox.Items.Add(etc); }