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
-
2020-12-17 00:45
You can use
HtmlGenericControl table = new HtmlGenericControl("table");
instead of
HtmlTable table = new HtmlTable();