Skip to content

Instantly share code, notes, and snippets.

@felixlindemann
Created December 18, 2014 09:39
Show Gist options
  • Save felixlindemann/12a0ee02eb34b9ad6c99 to your computer and use it in GitHub Desktop.
Save felixlindemann/12a0ee02eb34b9ad6c99 to your computer and use it in GitHub Desktop.
lime-tree Test 01: Default.aspx
<article>
<table>
<tr>
<th>
<asp:Label ID="Label1" runat="server" Text="Sugarlevel">
</asp:Label>
</th>
<td>
<asp:TextBox ID="sugarlevel" ToolTip="Hit Enter to update" runat="server" Width="140px"></asp:TextBox >
</td>
<td>
<asp:Label ID="lbl2" runat="server" Text="units">
</asp:Label>
</td>
<td> <asp:DropDownList ID="cbolevel" runat="server">
<asp:ListItem Value="1">[mg/dl]</asp:ListItem>
<asp:ListItem Value="2">[mmol/l]</asp:ListItem>
</asp:DropDownList></td>
</tr>
</table>
<h3>
<asp:Label ID="Label2" runat="server" Text="Result:"> </asp:Label>
</h3>
<p>
<asp:TextBox ID="txtresult" ReadOnly="true" runat="server"></asp:TextBox>
</p>
<p>
<asp:Button ID="Button1" runat="server" Text="Convert" /></p>
</article>
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment