[This is preliminary documentation and subject to change.]
The CaptionStyle property specifies a style to use for the table's caption. For more information about setting a caption for the table, see the Caption property.
CaptionStyle = 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.CaptionStyle = "ALIGN=Bottom" myHtmlTable.AutoFormat(RS) %>
HTML Table Formatter Component