SystemClass :: WriteResult - Write template result to template output area
The WriteResult() function will append the data passed to the template string. Non-string values are converted to string according to the common conversion rules.
Write result supports converting data passed in the first parameter to HTML compatible data by converting HTML characters:
> à >
< à <
& à &
" à "
WriteResult(data); // appends content of data to template
WriteResult(data,false);// same as above
WriteResult(data,true); // HTML convetion befor append data