Hi I have the following problem:
I have set my appliction.cfm file to handle session management and copied it to the directory under which I have my web pages. I have 4 formX.cfm files and the first one has a cflock command issued for a cfset Session.Name=#Form.name# hence I am setting the session variable to the name inputted on my first form page. Since I want to use the same name without people entering their names for the next 4 pages they go through, I set it up this way. Now the problem is that on a couple of machines from which I go to the page I have my site on, I have no problems updating the data and tracking the forms. However, on some others, I get
--------------------------------------------------------------------------------
Error Occurred While Processing Request
Error Diagnostic Information
An error occurred while evaluating the expression:
#Session.Name#
Error near line 23, column 12.
--------------------------------------------------------------------------------
Error resolving parameter SESSION.NAME
The session variable NAME does not exist. The cause of this error is very likely one of the following things:
The name of the session variable has been misspelled.
The session variable has not yet been created.
The session variable has timed out.
My question is: Why would I get the session variable set right on one computer but not on the others? How can I let multiple sessions run simultaneously independent ofthe computer used to access the pages?
I have set my appliction.cfm file to handle session management and copied it to the directory under which I have my web pages. I have 4 formX.cfm files and the first one has a cflock command issued for a cfset Session.Name=#Form.name# hence I am setting the session variable to the name inputted on my first form page. Since I want to use the same name without people entering their names for the next 4 pages they go through, I set it up this way. Now the problem is that on a couple of machines from which I go to the page I have my site on, I have no problems updating the data and tracking the forms. However, on some others, I get
--------------------------------------------------------------------------------
Error Occurred While Processing Request
Error Diagnostic Information
An error occurred while evaluating the expression:
#Session.Name#
Error near line 23, column 12.
--------------------------------------------------------------------------------
Error resolving parameter SESSION.NAME
The session variable NAME does not exist. The cause of this error is very likely one of the following things:
The name of the session variable has been misspelled.
The session variable has not yet been created.
The session variable has timed out.
My question is: Why would I get the session variable set right on one computer but not on the others? How can I let multiple sessions run simultaneously independent ofthe computer used to access the pages?