According to ColdFusion version check :
Checking the version of ColdFusion couldn't be simpler. All you have to do is unload the SERVER area. The version of ColdFusion is contained in a field called "ColdFusion.ProductVersion". You should see a number like 7,0,1,116466. In addition, the type of system license type (for example, enterprise, developer, etc.) is located in a field called "ColdFusion.ProductLevel".
And there is also a code example:
<cfdump var="#SERVER#" />
<cfset strVersion = SERVER.ColdFusion.ProductVersion />
<cfset strLevel = SERVER.ColdFusion.ProductLevel />
source
share