2 list box item transfer together

Add Item into ListBox Write below code in page load event for adding items in listbox1 if (!Page.IsPostBack) { ListBox1.Items.Add(“Baroda”); ListBox1.Items.Add(“Anand”); ListBox1.Items.Add(“Ahmedabad”); ListBox1.Items.Add(“Pune”); } Now create another list box and one button to transfer multiple selected item from previous listbox Write downbelow code in Button Click event……….. int sel = 0; for (int i = …