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

SaPrintAllKeys

A built-in data site callback function which will print out all stored keyed strings.

Synopsis

#include "SaRnHtml.h"

void SaPrintAllKeys(char* filename, char* site, void* client);

Arguments

filename
Not used.
site
Not used.
client
Not used.

Return Values

None.

Description

A built-in data site callback function which will print out all stored keyed strings. Keyed strings are key-value pairs separated by an equal sign. Each keyed string printed is separated from the next keyed string by 3 underscores. This can be used to hold state for an anchor in a client browser. The data site should precede the bound anchor string.

Example

SaPrintAllKeys(NULL, NULL, NULL);
/*** or ***/
char *filename, *site;
....
SaRegisterFuncSite(filename, site, SaPrintAllKeys, NULL);

See Also


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