テーブルとボタンがあります。ボタンをクリックしてそのテーブルをインクリメントしたいのですが、どうすればこれを達成できますか?
私のテーブルはこれに似ています
<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を試してみますが、ロジックはわかりません。これもGoogleで検索しますが、何も見つかりません。+