or
| protected void lbxAssigned_Transferred(object sender, RadListBoxTransferredEventArgs e) |
| { |
| foreach (RadListBoxItem listItem in lbxAvailable.Items) |
| { |
| if (listItem.Selected) |
| { |
| ProductCarriers objPC = new ProductCarriers(); |
| string test = listItem.Text; |
| objPC.Allocate(Convert.ToInt32(listItem.Value), Convert.ToInt32(cbxProducts.SelectedValue)); |
| } |
| } |
| PopulateLists(); |
| } |