Hi,
I have a user control with two ListBoxes and buttons to move items from one to the other. The DataSource for the first ListBox is a ListItemCollection which I populate in my code behind file like so:
ListItemCollection licPCTs = new ListItemCollection();
foreach (DataRow row in ds.Tables[1].Rows)
{
ListItem li = new ListItem(row[" Go to the complete details ...