Advertisement
Guest User

HTML webpart code

a guest
Nov 27th, 2014
144
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
HTML 0.86 KB | None | 0 0
  1. <div style="width: 50%; border: solid 2px black;">
  2.             <span>Select the room:</span>
  3.             <asp:DropDownList ID="dd_salas" AutoPostBack="true" runat="server" OnSelectedIndexChanged="dd_salas_SelectedIndexChanged" />
  4.             <br />
  5.             <br />
  6.             <asp:RadioButtonList ID="rbt_graphicType" runat="server" AutoPostBack="true" OnSelectedIndexChanged="rbt_graphicType_SelectedIndexChanged">
  7.                 <asp:ListItem Text="Meeting Type" Selected="True" /> <!--Column Chart-->
  8.                 <asp:ListItem Text="Meeting Category" /> <!--Pie Chart-->
  9.            </asp:RadioButtonList>
  10.             <asp:Panel ID="pnl_data" runat="server" />
  11.             <!--Div that will hold the pie chart-->
  12.             <div id="chart_div">
  13.             </div>
  14.             <br />
  15.             <asp:Label runat="server" Text="" ID="MessageLabel" />
  16. </div>
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement