
October 20th, 2003, 08:47 PM
|
|
Moderator
|
|
Join Date: Jun 2002
Location: Raleigh, NC
|
|
|
In ColdFusion, REQUEST is a scope that could be considered "global". Some other scopes are VARIABLES, FORM, URL, ATTRIBUTES, SESSION, CLIENT, APPLICATION, and COOKIE.
So unless there is a line of code somewhere earlier during the execution that says
cfset request.appname="somthing"
You will get an error because that variable is not defined.
Hope that helps.
|