Whatever message this page gives is out now! Go check it out!
| Tag | CFScript equivalent |
| cfabort | abort |
| cfbreak | break. |
| cfcase | case |
| cfcatch | catch |
| cfcomponent | component |
| cfcontinue | continue |
| cfcookie | Direct assignment of Cookie scope memory-only variables. You cannot use direct assignment to set persistent cookies that are stored on the user system. |
| cfdefaultcase | default |
| cfdirectory Only for <Cfdirectory action=list/> | The directory functions DirectoryCreate, DirectoryDelete, DirectoryList , and DirectoryRename. |
| cfdump | writedump |
| cfelse | else |
| cfelseif | elseif |
| cfexit | exit |
| cffile | The file functions FileDelete, FileSeek, FileSkipBytes, and FileWriteLine. |
| cffinally | finally |
| cffunction | function |
| cfimage | The Image functions. |
| cfif | if |
| cfimport | import Import in cfscript is only equivalent of <cfimport path="">. |
| cfinclude | include |
| cfinterface | interface |
| cflocation | location |
| cflock | lock |
| cflog | writelog |
| cfloop |
|
| cfobject | createobject, new |
| cfoutput | writeoutput |
| cfparam | param |
| cfprocessingdirective | pageencoding |
| cfproperty | property |
| cfrethrow | rethrow |
| cfreturn | return |
| cfsavecontent | savecontent |
| cfset | Assignment statement x =1; is equivalent of <cfset x =1> local.x=1; is equivalent of <cfset var x =1> |
| cfswitch | switch |
| cfthread | thread |
| cfthrow | throw |
| cftrace | trace |
| cftransaction | transaction |
| cftry | try |
...
<cfscript>
// Loop through the qGetEmails RecordSet
for (x = 1; x <= qGetEmails.RecordCount; x=x+1) {
This_id = qGetEmails.Emails_id[x];
This_Subject = qGetEmails.Subject[x];
This_RecFrom = qGetEmails.RecFrom[x];
This_SentTo = qGetEmails.SentTo[x];
This_dReceived = qGetEmails.dReceived[x];
This_Body = qGetEmails.Body[x];
... // More code goes here.
}
</cfscript><cflocation
url = "URL"
addToken = "yes|no"
statusCode = "300|301|302|303|304|305|307"><cfscript>
cflocation(url = "URL",
addToken = "yes|no",
statusCode = "300|301|302|303|304|305|307")
</cfscript><cfajaxproxy
cfc = "CFC name"
jsclassname = "JavaScript proxy class name">
OR
<cfajaxproxy
bind = "bind expression"
onError = "JavaScript function name"
onSuccess = "JavaScript function name"><cfscript>
cfajaxproxy(cfc = "CFC name",
jsclassname = "JavaScript proxy class name")
</cfscript>
OR
<cfscript>
cfajaxproxy
(bind = "bind expression",
onError = "JavaScript function name",
onSuccess = "JavaScript function name")
</cfscript><cfpdf action="merge" destination=expandPath(’./MyPDFMerged.pdf’) overwrite=true>
<cfpdfparam source=expandPath(’./MyPDF1.pdf’)>
<cfpdfparam source=expandPath(’./MyPDF2.pdf’)>
</cfpdf>cfpdf(action="merge", destination=expandPath(’./MyPDFMerged.pdf’), overwrite=true) {
cfpdfparam(source=expandPath(’./MyPDF1.pdf’));
cfpdfparam(source=expandPath(’./MyPDF2.pdf’));
};| break | do | import | var |
case | else | in | while |
catch | finally | interface | |
try | for | pageencoding | |
continue | function | return | |
default | if | switch |