, HtmlTable HTML <table> (, Width, Height, CellSpacing ..). Rows, HtmlTableRow, <tr>.
TagBuilder - API, , , HTML <table>, .
, HmlTable , TagBuilder width="" <table>.
HtmlTable:
HtmlTable htmlTable = new HtmlTable();
htmlTable.Width = "100px";
TagBuilder:
TagBuilder tagBuilder = new TagBuilder("table");
tagBuilder.Attributes["width"] = "100px";
, TagBuilder table, Width , ( ), HtmlTable.