[Prev] [Next] [Top] [Bottom] [Contents] (64 out of 193)

SaListItem

Prints an HTML list item fragment to an HTML stream.

Synopsis

#include "SaRnHtml.h"

int SaListItem(char* evalue);

Arguments

evalue
A string specifying the list item's value. This string is converted to an HTML-compatible string. If evalue is NULL, an empty string is used.

Return Values

Returns an integer with a value of 0.

Description

Prints an HTML list item fragment to an HTML stream.

Example

The code fragment:

SaListItem("Oranges");
will write:

<LI>Oranges</LI>
to the output stream.

See Also


[Prev] [Next] [Top] [Bottom] [Contents] (64 out of 193)