I have two ListBoxes, lstAvailableColors and lstSelectedColors. Between each listbox are two buttons, Add and Remove. When a color or colors is selected in lstAvailableCol
Maybe this is what you need
protected void btnAdd_Click(object sender, EventArgs e) { while(listBox1.SelectedIndex!=-1) { listBox1.Items.Remove(listBox1.SelectedItem); } }