我有表和按鈕,我想單擊按鈕增加該表,我如何實現這一目標?增量表與按鈕
我的表是與此類似
<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的,但我不知道邏輯和我也谷歌這個,但沒有找到任何東西。 +