[This is preliminary documentation and subject to change.]
The Borders property specifies whether to display the table with visible cell borders.
Borders = Value
If Value is TRUE, then the table will include cell borders. This is equivalent to setting the BORDER attribute of the HTML <TABLE> tag equal to 1.
If Value is FALSE, the table will not include cell borders.
The default value is TRUE.
<% Set myHTMLTable = Server.CreateObject("IISSample.HTMLTable") myHTMLTable.Borders = False %>
HTML Table Formatter Component