62,272
社区成员
发帖
与我相关
我的任务
分享
HtmlTable table = new HtmlTable();
HtmlGenericControl thead = new HtmlGenericControl("thead");
HtmlTableRow row = new HtmlTableRow();
HtmlTableCell cell = new HtmlTableCell();
row.Cells.Add(cell);
thead.Controls.Add(row);
table.Controls.Add(thead);
tBody也是类似这样添加