Hi, does anyone know how can I create tabs dynamically based on what is selected from a Listbox?
This is what I have:
Listbox:
<asp:ListBox ID="SelectionListBox" runat="server" AppendDataBoundItems="True" SelectionMode="Multiple" Height="130px" Width="350px">
<asp:ListItem Text="Apple" Value ="1" />
<asp:ListItem Text="Watermelon" Value ="2" />
<asp:ListItem Text="Kiwi" Value ="3" />
<asp:ListItem Text="Plum" Value ="4" />
<asp:ListItem Text="Pineapple" Value ="5" />
</asp:ListBox>
RetrieveButton:
<asp:Button ID="RetrieveButton" runat="server" Text="Button" />
< ...
Go to the complete details ...