Created
December 18, 2014 09:39
-
-
Save felixlindemann/12a0ee02eb34b9ad6c99 to your computer and use it in GitHub Desktop.
lime-tree Test 01: Default.aspx
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
<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