我有表格和按钮,我想通过单击按钮来增加该表格,我该如何实现?
我的表与此类似
<table>
<tr>
<td colspan="2">
Information
</td></tr>
<tr>
<td>
city
</td>
<td>
<asp:TextBox ID="tCity" runat="server">
</asp:TextBox>
</td></tr>
<tr>
<td>
state
</td>
<td>
<asp:TextBox ID="tState" runat="server">
</asp:TextBox>
</td></tr>
<tr>
<td>
zip
</td>
<td>
<asp:TextBox ID="tZip" runat="server">
</asp:TextBox>
</td></tr></table>
<asp:LinkButton ID="AddNew" runat="server" />
例子
Information
City ---------
State ---------
Zip ---------
Add New Button
点击按钮后我想要
Information
City ---------
State ---------
Zip ---------
Information
City ----------
State ---------
Zip ---------
Add New Button
我尝试使用 Gridview 但我不知道逻辑,我也在谷歌上搜索但没有找到任何东西。+