Whatever message this page gives is out now! Go check it out!
Variable scope | Variables available |
Server | To all applications on a server and all clients |
Application | To all pages in an application for all clients |
Client | For a single client browser over multiple browser sessions in one application |
Session | For a single client browser for a single browser session in one application |
Event | Trigger |
Application start | ColdFusion starts processing the first request for a page in an application that is not running. |
Application end | An application time-out setting is reached or the server shuts down. |
Session start | A new session is created as a result of a request that is not in an existing session. |
Session end | A session time-out setting is reached. |
Request start | ColdFusion receives a request, including HTTP requests, messages to the event gateway, SOAP requests, or Flash Remoting requests. |
Request | Immediately after ColdFusion finishes processing the request start event. The handler for this event is intended for use as a filter for the request contents. For more information on the differences between request start and request events, see Managing requests in Application.cfc in Defining the application and its event handlers in Application.cfc. |
Request end | ColdFusion finishes processing all pages and CFCs for the request. |
Exceptions | An exception occurs that is not handled in a try/catch block. |
<cfset THIS.mappings["/MyMap"]="c:\inetpub\myStuff"><cfset StructInsert(THIS.mappings, "/MyMap", "c:\inetpub\myStuff")><cfset customtagpaths = ListAppend(customtagpaths,"c:\mapped3")>
<cfset This.customtagpaths = customtagpaths>