Whatever message this page gives is out now! Go check it out!
GetFunctionList() |
<!----- This example shows the use of GetFunctionList. ---->
<cfset fList = GetFunctionList()>
<cfoutput>#StructCount(fList)# functions<br><br>
</cfoutput>
<cfloop COLLECTION = "#fList#" ITEM = "key">
<cfoutput>#key#<br>
</cfoutput>
</cfloop>