CFAJAXPROXY |
This tag provides a Javascript API to the remote CFC making it very easy to utilise server side calls. Only CFC methods that are marked as 'remote' can be exposed through this manner. The resulting Javascript is independent of any popular Javascript library. You can pass rich objects such as arrays and structures to the remote CFC with no problems. This function will do the necessary encoding and decoding on the fly. |
CFBASE |
Used to generate <BASE> tag which is used to specify default URL and target for all links on a page. |
CFCAPTCHA |
Used to produce a captcha image, to provide a mechanism for preventing non human entry |
CFCHART |
Used to produce charts from queries or specified chart series data |
CFCHARTDATA |
The child tag of CFCHARTSERIES |
CFCHARTDOMAINMARKER |
The child tag of CFCHART |
CFCHARTIMAGE |
The child tag of CFCHART. Used to set the background of a CFCHART. |
CFCHARTLEGEND |
The child tag of CFCHART. Used to set the legend of a CFCHART object. |
CFCHARTRANGEMARKER |
The child tag of CFCHART. Used to add a range marker to a CFCHART. |
CFCHARTSERIES |
The child tag of CFCHART |
CFCHARTTITLE |
The child tag of CFCHART. Used to set the title of a CFCHART. |
CFCOL |
Defines the column header. Must be inside a CFTABLE |
CFCONTENT |
Controls the MIMETYPE of the page, or sends out a file, remote object or binary object to the requester |
CFCOOKIE |
This tag is used to set and delete outgoing HTTP cookies that can be sent from the CFML application. You can read cookies using the 'cookie' variable scope. Cookies are limited to 20 per domain, each one being a maxium of 4KB in size. |
CFFLUSH |
Flushes the content of the buffer to the client. Once you do this, some tags no longer work, for example CFCOOKIE |
CFHEADER |
Sets the HTTP header of the outgoing request |
CFHTMLBODY |
Allows you to insert content into the HTML <body></body> area of the page. The end tag is optional. If omitted you may build content directly inside the tag. |
CFHTMLHEAD |
Allows you to insert content into the HTML <head></head> area of the page. The end tag is optional. If omitted you may build content directly inside the tag. |
CFJAVASCRIPT |
Intelligently manage Javascript files by collecting multiple files together and on-the-fly optimizing them to reduce their size and readability. Either compile Javascript inline or as a <script src=''> tag. It will only include Javascript files once per page request, even if they are specified multiple times in multiple tags throughout the page request. |
CFOUTPUT |
Inside a CFOUTPUT tag, all CFML variables will be processed for output to the browser, and can also be used to loop a query for output of each row. |
CFSAVECONTENT |
Allows you to capture complete blocks of output and instead of sending to the request, will catch them and store them into the variable provided |
CFSTYLESHEET |
Intelligently manage CSS files by collecting multiple files together and on-the-fly optimizing them to reduce their size and readability. It will only include CSS files once per page request, even if they are specified multiple times in multiple tags throughout the page request. |