Mikey
10-27-2010, 01:51 PM
I'm trying to recreate an office form (Work Order) in a web page and the only way I can come close is to use more then one <table> but I can't get the tables to line up vertically they want to go horizontally.
Works of course without the <form> tags
<form id="form1" runat="server">
<table align="left" style="width: 516px">
<tr>
<td>Job Name:</td><td><asp:TextBox ID="TextBox1" runat="server" Columns="50" TabIndex="1"></asp:TextBox></td>
<td>Job #:</td><td><asp:TextBox ID="TextBox2" runat="server" Columns="50" TabIndex="11"></asp:TextBox></td>
</tr>
ect.
</table>
<table align="left" style="width: 516px">
<tr>
<td>
ect.
Is there a way around this or go a different way?
Thanks
Works of course without the <form> tags
<form id="form1" runat="server">
<table align="left" style="width: 516px">
<tr>
<td>Job Name:</td><td><asp:TextBox ID="TextBox1" runat="server" Columns="50" TabIndex="1"></asp:TextBox></td>
<td>Job #:</td><td><asp:TextBox ID="TextBox2" runat="server" Columns="50" TabIndex="11"></asp:TextBox></td>
</tr>
ect.
</table>
<table align="left" style="width: 516px">
<tr>
<td>
ect.
Is there a way around this or go a different way?
Thanks