Function CSPTemplate::Build()
Description:
Builds the template tree from the specified text.
 |
Prototype:
bool Build(const CSPString& strText);
Arguments:
- const CSPString& strText [IN]
The template text from which to build the template tree.
Return value:
If successful, it returns true. Otherwise, it returns false.
Examples:
CSPTemplate Template; Template.Build( "<html><body><p>Slot:<csp:my_slot/></p></body></html>" );
See also:
member function LoadFromFile()
|
|