House of Fusion
Search over 2,500 ColdFusion resources here
  
Home of the ColdFusion Community

CFScript

CFSCRIPT: Function Execution

4Function Execution
4.1 A function execution is any use of a function where the results are NOT being assigned to a variable name. A list of ColdFusion functions that can be run in this manner (Execution Functions) can be found in appendix C.
<CFSCRIPT>
     // Set a variable using an assignment statement
     datenow = now();
     // Set a variable with the SetVariable function
     SetVariable('datenow', now());
</CFSCRIPT>


User Contributed Notes


Gordon Johnson
14-Sep-09 10:28 AM
Appendix C is in the main document:<br> http://www.houseoffusion.com/docs/cfscript.htm


Add a Note