(158 out of 193)
SaTableItem
Prints an HTML table item fragment to an HTML stream. The HTML table element is not supported by all client browsers.
Synopsis
#include "SaRnHtml.h"
int SaTableItem(char* evalue);
Arguments
evalue
- A string specifying the header of the HTML table item. This string is converted to an HTML-compatible string. If ename is NULL, an empty string is used.
Return Values
Returns an integer with a value of 0.
Description
Prints an HTML table item fragment to an HTML stream. The HTML table element is not supported by all client browsers.
Example
The code fragment:
SaTableItem("Peaches");
will write:
<TD>Peaches </TD>
to the output stream.
See Also
(158 out of 193)