Multi Selection in ListBox and Adding One ListBox to another Listbox in Asp.net c#
Aspx Page <asp:ListBox ID="listboxEducation" runat="server" SelectionMode="Multiple" Height="150"> </asp:ListBox> <asp:ImageButton ID="imgAdd" ImageUrl="~/Hospital/icons/rightArrow.png" Height="25" Width="25" runat="server" OnClick="imgAdd_Click" /> <asp:ImageButton ID="imgRemove" ImageUrl="~/Hospital/icons/leftArrow.png" Height="25" Width="25" runat="server" onclick="imgRemove_Click"/> <asp:ListBox ID="listboxEducationSelected" runat="server" SelectionMode="Multiple" Height="150"></asp:ListBox> .cs page c#. protected void imgAdd_Click(object sender, ImageClickEventArgs e) ...