I'm trying here and I'm not succeeding, so I decided to post here to see if anyone can help me. Thanks in advance...
I have structure below in a table, I need that when creating the new textbox they keep in the same structure of the table.
I can't do it via javascript, I need to do it by C# itself...
<body>
<form id="form1" runat="server">
<table runat="server" id="tbform">
<tr>
<td><asp:TextBox runat="server" ID="txt01"></asp:TextBox></td>
<td><asp:TextBox runat="server" ID="txt02"></asp:TextBox></td>
<td><asp:TextBox runat="server" ID="txt03"></asp:TextBox></td>
<td><asp:TextBox runat="server" ID="txt04"></asp:TextBox></td>
<td><asp:Button runat="server" ID="btnCreate" Text="Create" OnClick="btnCreate_Click" /></td>
</tr>
</table>
</form>
</body>