August 2003
Intermediate to advanced
1140 pages
68h 45m
English
WriteOutput
WriteOutput(string)Writes text to the page output stream. WriteOutput(
) is meant to be used inside cfscript
blocks but can also be used inside cfoutput
sections. Examples:
<cfscript>
WriteOutput('The WriteOutput function works best inside cfscript blocks<br>');
</cfscript>
<cfoutput>
#WriteOutput('Although you can use it in cfoutput spaces, why would you?')#
</cfoutput>