我有这个:
<asp:Table id="tbl_Items" runat="server">
</asp:Table>
<asp:Button ID="btn_AddNewItemField" runat="server" Text="Add New Item"
onclick="btn_AddNewItemField_Click" />
在PageLoad()
我添加一行:
TableRow row = new TableRow();
TableCell c1 = new TableCell();
c1.Controls.Add(new TextBox());
TableCell c2 = new TableCell();
c2.Controls.Add(new DropDownList());
row.Cells.Add(c1);
row.Cells.Add(c2);
this.tbl_Items.Rows.Add(row);
这有效。
但是当我单击按钮添加新行时,我调用了相同的代码并且代码没有错误但没有任何反应。没有错误,没有行,没有什么。我究竟做错了什么?