| name | description |
| cfapplication | Defines the scope of a ColdFusion application; enables and disables storage of Client variables; specifies the Client variable storage mechanism; enables Session variables; and sets Application variable time-outs. |
| cfassociate | Allows subtag data to be saved with a base tag. Applies only to custom tags. |
| cferror | Displays a custom HTML page when an error occurs. This lets you maintain a consistent look and feel among an application’s functional and error pages. |
| cfimport | You can use the cfimport tag to import either of the following: |
| cfinterface | Defines an interface that consists of a set of signatures for functions. The interface does not include the full function definitions; instead, you implement the functions in a ColdFusion component (CFC). The interfaces that you define by using this tag can make up the structure of a reusable application framework. |
| cflock | Ensures the integrity of shared data. Instantiates the following kinds of locks: |
| cfscript | Encloses a code block that contains cfscript statements. |
| cfthread | The cfthread tag enables you to create threads, independent streams of code execution, in your ColdFusion application. You use this tag to run or end a thread, temporarily stop thread execution, or join together multiple threads. |