ice78991
Programmer
- Nov 20, 2006
- 216
I am using the flash FileReference API to upload files in my coldfusion app.
I trigger the upload in flash with
uploadURL = new URLRequest();
uploadURL.url = "processingpage.cfm?var1=20";
file.upload(uploadURL);
The problem is that I think I am losing access to my session variables in processingpage.cfm
I have tried setting the url to the following but has not helped.
processingpage.cfm?var1=20&#Session.URLToken#
Is there a solution to this problem?
I trigger the upload in flash with
uploadURL = new URLRequest();
uploadURL.url = "processingpage.cfm?var1=20";
file.upload(uploadURL);
The problem is that I think I am losing access to my session variables in processingpage.cfm
I have tried setting the url to the following but has not helped.
processingpage.cfm?var1=20&#Session.URLToken#
Is there a solution to this problem?