Advertisement
Advertisement
| 06.09.2008 at 12:27PM PDT, ID: 23470236 | Points: 250 |
|
[x]
Attachment Details
|
||
1: 2: 3: 4: 5: 6: 7: 8: 9: 10: 11: 12: 13: 14: 15: 16: 17: 18: 19: 20: 21: 22: 23: 24: 25: 26: 27: 28: 29: 30: 31: 32: 33: 34: 35: 36: 37: 38: 39: 40: 41: 42: 43: 44: 45: 46: 47: 48: 49: 50: 51: 52: 53: 54: 55: |
<body>
<form id="form1" runat="server">
<div>
<table border="1">
<tr>
<td style="width: 100px">
Amount</td>
<td style="width: 100px">
<asp:TextBox ID="txtamount" runat="server"></asp:TextBox></td>
<td style="width: 100px">
</td>
</tr>
<tr>
<td style="width: 100px">
Product</td>
<td style="width: 100px">
<asp:radiobuttonlist id="radio1" runat="server" OnSelectedIndexChanged="radio1_SelectedIndexChanged">
<asp:listitem id="option1" runat="server" value="A" />
<asp:listitem id="option2" runat="server" value="B" />
<asp:listitem id="option3" runat="server" value="C" />
</asp:radiobuttonlist>
<td style="width: 100px">
</td>
</tr>
<tr>
<td style="width: 100px; height: 22px">
Ship</td>
<td style="width: 100px; height: 22px">
<asp:CheckBox ID="chktoday" runat="server" Text="Today" /><br />
<br />
<asp:CheckBox ID="chktmr" runat="server" Text="Tomorrow" /></td>
<td style="width: 100px; height: 22px">
</td>
</tr>
<tr>
<td style="width: 100px">
</td>
<td style="width: 100px">
<asp:Button ID="btnsubmit" runat="server" Text="Submit" Width="111px" /></td>
<td style="width: 100px">
</td>
</tr>
<tr>
<td style="width: 100px">
</td>
<td style="width: 100px">
</td>
<td style="width: 100px">
</td>
</tr>
</table>
</div>
</form>
</body>
|