Evaluating (ColdFusion) unscoped query variables
Friday, March 28th, 2008Most developers know that if you reference a variable without a scope prefix (such as variables, form, URL etc) ColdFusion will check each of the available scopes until it finds a variable of the name you are looking for.
The order in which ColdFusion checks is:
Function local (UDFs and CFCs only)
Thread local (inside threads only)
Arguments
Variables (local […]