Function CSPTemplate::Echo()
Description:
Inserts text into a slot.
 |
Prototype:
void Echo(const CSPString& strText);
Arguments:
- const CSPString& strText [IN]
Text to insert to the template slot.
Return value:
No return value (void).
Remarks:
If the template object happens to be a container, everything contained by it, is replaced by the specified text.
Examples:
Template( "my_tag" ).Echo( "hello!" );
See also:
member functions Render(), Clear(), KeepLastOutput()
|
|