Application Framework Tags

namedescription
cfapplicationDefines 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.
cfassociateAllows subtag data to be saved with a base tag. Applies only to custom tags.
cferrorDisplays 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.
cfimportYou can use the cfimport tag to import either of the following:
cfinterfaceDefines 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.
cflockEnsures the integrity of shared data. Instantiates the following kinds of locks:
cfscriptEncloses a code block that contains cfscript statements.
cfthreadThe 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.