Created
February 27, 2016 08:04
-
-
Save eternaltung/b49e5f028aa327e70a24 to your computer and use it in GitHub Desktop.
Asp.net Web Forms Bootstrap MultiSelect
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
<asp:ListBox ID="ListBox1" runat="server" SelectionMode="Multiple"> | |
<asp:ListItem Text="Item1" Value="1" /> | |
<asp:ListItem Text="Item2" Value="2" /> | |
<asp:ListItem Text="Item3" Value="3" /> | |
<asp:ListItem Text="Item4" Value="4" /> | |
</asp:ListBox> | |
<asp:Button ID="Button1" runat="server" Text="Show Select" OnClick="Button1_Click" /> | |
<asp:Label ID="Label1" runat="server" Text=""></asp:Label> |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment