CFML Quick Reference
13
modifyType = "replace" or "add" or "delete"
rebind = "Yes" or "No"
referral = "number_of_allowed_hops"
secure = "multi_field_security_string"
separator = "separator_character"
delimiter = "delimiter_character">
cflocation
<cflocation
url = "url"
addToken = "Yes" or "No">
cflock
<cflock
timeout = "timeout in seconds "
scope = "Application" or "Server" or "Session"
name = "lockname"
throwOnTimeout = "Yes" or "No"
type = "readOnly" or "exclusive ">
<!--- CFML to be synchronized --->
</cflock>
cflog
<cflog
text = "text"
log = "log type"
file = "filename"
type = "message type"
application = "application name yes or no">
cflogin
<cflogin
idletimeout = "value"
applicationToken = "token"
cookieDomain = "domain"
...
<cfloginuser
name = "name"
password = "password-string"
roles = "roles">
...>
</cflogin>
cfloginuser
<cfloginuser
name = "name"
password = "password-string"
roles = "roles">
cflogout
<cflogout>
cfloop
<cfloop
index = "parameter_name"
from = "beginning_value"
to = "ending_value"
step = "increment">
... HTML or CFML code ...
</cfloop>
<cfloop
condition = "expression">
...
</cfloop>
<cfloop
query = "query_name"
startRow = "row_num"
endRow = "row_num">
</cfloop>
<cfloop
index = "index_name"
list = "list_items"
delimiters = "item_delimiter">
...
</cfloop>
cfmail
<cfmail
to = "recipient"
from = "sender"
cc = "copy_to"
bcc = "blind_copy_to"
subject = "msg_subject"
replyto = "reply_to_addr"
failto = "fail_message_addr"