Adding another row with all the textboxes on add button click
HelloI have the code below for aspx page, when I click "Add" button the data in the text boxes should be sent to database and create another row with same set of textboxes ( with add button) , the borders and every style in the table should not change, it should add as many rows, the page can extend down(I mean the user can scroll down )
What would be the code on Addbutton click
<tr><td><asp:DropDownList runat="server" ID="DropDownList1" >
</asp:DropDownList>
</td>
<td><asp:RadioButton runat="server" Text="Yes" ID="RadioButton1" GroupName="G1" /><asp:RadioButton runat="server" Text="No" ID="RadioButton2" GroupName="G1" /></td>
<td><asp:DropDownList runat="server" ID="DropDownList2" /></td>
<td><asp:TextBox runat="server" ID="TextBox1" /></td>
<td><asp:TextBox runat="server" ID="TextBox2" /></td>
<td><asp:TextBox runat="server" ID="TextBox3" /></td>
<td><asp:TextBox runat="server" ID="TextBox4" /></td>
<td><asp:TextBox runat="server" ID="TextBox5" /></td>
<td><asp:TextBox runat="server" ID="TextBox6" /></td>
<td><asp:TextBox runat="server" ID="TextBox7" /></td>
<td><asp:TextBox runat="server" ID="TextBox8" /></td>
<td><asp:Button runat="server" Text="Add" /></td>
</tr>