Code to find the number of functions in the current coldfusion version
<cfset fList=GetFunctionList()>
<cfoutput>#StructCount(fList)# functions</cfoutput><br>
<cfloop collection="#fList#" item="key">
<cfoutput>#key#<br></cfoutput>
</cfloop>
Comments
Post a Comment