Jump to content

CFScript

From Wikipedia, the free encyclopedia
This is an old revision of this page, as edited by Downtown dan seattle (talk | contribs) at 20:12, 20 November 2006. The present address (URL) is a permanent link to this revision, which may differ significantly from the current revision.
(diff) ← Previous revision | Latest revision (diff) | Newer revision → (diff)

CFScript is an extension of CFML on the ColdFusion platform. CFScript looks like JavaScript. Some ColdFusion developers prefer is since it has less additional commands than ordinary CFML; only the actual changes are represented in the code (whereas normal CFML would involve CFSET tags at every line).

Every CFScript code must be contained in a CFScript tag, as follows <cfscript> xParam = '115'; yParam = '200'; </cfscript>