HtmlTable, HtmlTableRow, HtmlTableCell - creating thead, tbody and tfoot

前端 未结 4 720
孤独总比滥情好
孤独总比滥情好 2020-12-17 00:24

I\'m working with c# ASP .Net, HtmlTable, HtmlTableRow, HtmlTableCell to create a table.

for example... i need to have some cells to be wrapped by

4条回答
  •  Happy的楠姐
    2020-12-17 00:45

    You can use

    HtmlGenericControl table = new HtmlGenericControl("table");
    

    instead of

    HtmlTable table = new HtmlTable();
    

提交回复
热议问题