Learning ColdFusion 8: CFThread Part I - Data Exchange

<!--- Launch a child thread. --->
<cfthread
	action="run"
	name="MyThread">
 
	<!--- Output a message. --->
	Great Scott!
 
</cfthread>
 
<!--- Join the child thread to the curren page. --->
<cfthread
	action="join"
	name="MyThread"
	/>
 
<!--- Output the content of the child thread. --->
#Trim( MyThread.Output )#

For Cut-and-Paste