[This is preliminary documentation and subject to change.]
The Caption property specifies the text of a caption for the table.
Caption = Value
<% Set Conn = Server.CreateObject("ADODB.Connection") Conn.Open "ADOSamples" Set RS = Conn.Execute("SELECT * FROM Orders") Set myHtmlTable = Server.CreateObject("IISSample.HTMLTable") myHtmlTable.Borders = True myHtmlTable.Caption = "Hello, World" myHtmlTable.AutoFormat(RS) %>
HTML Table Formatter Component