>does anyone know of an FAQ or somesuch that contains a list
 > of all available standard variable scopes?
 > ie.
 > File.ServerFile
 > Session.CFID
 > Session.CFToken
 > etc.


Here's what I've compiled over time.

Variables. (local - server memory)
Request. (local - server memory)
'queryname'. (local - server memory)
CFQuery. (local - server memory (1 only/.executiontime))
Form. (local - action page - HTTP Body)
URL. (local - target page - In URL)
CGI. (global - to user - HTTP request)
Cookie. (global - to user - on client)
Session. (global - to user - time limit on server)
Application. (global - to app - time limit on server)
Server. (global - to machine - server memory)
Client. (global - to user -in db or reg)
Caller. (local - to calling page - server memory)
Attributes. (local - to custom tag - server memory)
ThisTag.  (local - to custom tag - server memory)

--return values "scopes"--
CFCatch. (local - server memory)
Error. (local - server memory)
File. (local - server memory)
CFFTP. (local - server memory)
CFHTTP. (local - server memory)
CFStoredProc. (local - server memory)
~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
Structure your ColdFusion code with Fusebox. Get the official book at 
http://www.fusionauthority.com/bkinfo.cfm

Archives: http://www.mail-archive.com/cf-talk@houseoffusion.com/
Unsubscribe: http://www.houseoffusion.com/index.cfm?sidebar=lists

Reply via email to