I have two listboxes and i want to insert multiple selected values from both listboxes to database. Let me explain :-
<asp:ListBox ID="ddlSuperior" runat="server" SelectionMode="Multiple">
<asp:ListBox ID="ddlSubordinate" runat="server" SelectionMode="Multiple">
and a submit button
<asp:Button ID="btnSubmit" runat="server" Text="Submit" />
Suppose i select 2 values from ddlSuperior and 1 value from ddlSubordinate. How can i do that..?