本文介绍了如何通过在表格内嵌入控件向表格动态添加行的处理方法,对大家解决问题具有一定的参考价值,需要的朋友们下面随着小编来一起学习吧!
问题描述
如何使用嵌入在表中的控件向表动态添加行
How to add rows dynamically to Table with controls embedded inside the table
推荐答案
<asp:Table runat="server" ID="table1" Width="40%" GridLines="Both" BackColor="white">
</asp:Table>
TableRow trow = new TableRow();
TableCell tcellcolname = new TableCell();
tcellcolname.Text = "column header";
tcellcolname.Controls.Add(new TextBox());
trow.Cells.Add(tcellcolname);
table1.Rows.Add(trow);
这篇关于如何通过在表格内嵌入控件向表格动态添加行的文章就介绍到这了,希望我们推荐的答案对大家有所帮助,也希望大家多多支持!