Skip to content

Instantly share code, notes, and snippets.

@eternaltung
Created February 27, 2016 08:04
Show Gist options
  • Save eternaltung/b49e5f028aa327e70a24 to your computer and use it in GitHub Desktop.
Save eternaltung/b49e5f028aa327e70a24 to your computer and use it in GitHub Desktop.
Asp.net Web Forms Bootstrap MultiSelect
<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