将动态html表添加到ASP表单

时间:2010-01-12 11:35:20

标签: html asp.net forms html-table

我使用HtmlTable,HtmlTableRow和HtmlTableCell创建了一个动态表。 最后我用Form.Controls.Add(thisHtmlTable);

将它添加到表单中

但桌子被添加到错误的位置......

`<asp:Content ID="Content2" ContentPlaceHolderID="ContentPlaceHolder1" runat="server">`  

`<form id="formPort">`   

<!--this is the place where i want the table to be added-->    </form>
    <!--the table was added here!!!-->
</asp:Content>

有没有人知道如何在“formport”表单中添加它?

感谢您的回答,

1 个答案:

答案 0 :(得分:0)

我没有正确回答您的问题,但您可以在表单中添加asp:Panel,并使用HtmlTable方法在其中添加Controls.Add

如果你改写你的问题并提供更多代码[整个aspx结构] /细节,你会找到准确的答案。