Guest User

Untitled

a guest
Jun 2nd, 2018
102
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
ASP 2.04 KB | None | 0 0
  1. <%--
  2.     var selectedEvents = (from ctrl in Page.Controls
  3.                   where ctrl.GetType() == typeof(CheckBox)
  4.                   select ((CheckBox)ctrl).Text).ToList();
  5. --%><asp:Panel runat="server" ID="pnlEvents" GroupingText="Events">
  6.   <asp:Panel ID="Panel1" runat="server" GroupingText="Cubic">
  7.     <asp:CheckBox runat="server" ID="cbx2x2" Text="2x2"/>
  8.     <asp:CheckBox runat="server" ID="cbx3x3" Text="3x3"/>
  9.     <asp:CheckBox runat="server" ID="cbx4x4" Text="4x4"/>
  10.     <asp:CheckBox runat="server" ID="cbx5x5" Text="5x5"/>
  11.     <asp:CheckBox runat="server" ID="cbx6x6" Text="6x6"/>
  12.     <asp:CheckBox runat="server" ID="cbx7x7" Text="7x7"/>
  13.     <br />
  14.     <asp:CheckBox runat="server" ID="cbx3x3Oh" Text="3x3 OH"/>
  15.   </asp:Panel>
  16.   <asp:Panel ID="Panel2" runat="server" GroupingText="Blind">
  17.     <asp:CheckBox runat="server" ID="cbxBld3x3" Text="3x3 BLD" />
  18.     <asp:CheckBox runat="server" ID="cbxBld4x4" Text="4x4 BLD" />
  19.     <asp:CheckBox runat="server" ID="cbxBld5x5" Text="5x5 BLD" />
  20.   </asp:Panel>
  21.   <asp:Panel ID="Panel3" runat="server" GroupingText="Other">
  22.     <asp:CheckBox runat="server" ID="cbxSq1" Text="Square-1"/>
  23.     <asp:CheckBox runat="server" ID="cbxMirrorBlocks" Text="Mirror Blocks"/>
  24.     <asp:CheckBox runat="server" ID="cbxPyra" Text="Pyraminx"/>
  25.     <asp:CheckBox runat="server" ID="cbxMega" Text="Megaminx"/>
  26.   </asp:Panel>
  27.   <asp:Panel ID="Panel4" runat="server" GroupingText="Flat">
  28.     <asp:CheckBox runat="server" ID="cbxClock" Text="Clock"/>
  29.     <asp:CheckBox runat="server" ID="cbxMagic" Text="Magic"/>
  30.     <asp:CheckBox runat="server" ID="cbxMasterMagic" Text="Master Magic"/>
  31.   </asp:Panel>
  32.   <asp:Panel ID="Panel5" runat="server" GroupingText="Towers">
  33.     <asp:CheckBox runat="server" ID="cbx2x2x3" Text="2x2x3"/>
  34.     <asp:CheckBox runat="server" ID="cbx2x2x4" Text="2x2x4"/>
  35.   </asp:Panel>
  36.   <asp:Panel ID="Panel6" runat="server" GroupingText="Relays">
  37.     <asp:CheckBox runat="server" ID="cbxRelay2to4" Text="2x2 - 4x4" />
  38.     <asp:CheckBox runat="server" ID="cbxRelay2to5" Text="2x2 - 5x5"/>
  39.   </asp:Panel>
  40. </asp:Panel>
Add Comment
Please, Sign In to add comment