Can you show more of your code?  You could also be running into a pass by 
reference vs pass by value problem.

If you are creating a structure in the variables scope, then passing the 
structure to the session scope, the session scope is going to refer to a 
reference of the local structure.  Thus when you go to the next page, the 
referenced local structure is gone.

An off the cuff example.

<cfscript>
aLocalStruct = structNew();
aLocalStruct.aValue = "Foo";
aLocalStruct.bValue = "Bar";
aLocalStruct.xValue = "123";

session.aSessionStruct = localStruct;
</cfscript>




--------------
Ian Skinner
Web Programmer
BloodSource
www.BloodSource.org
Sacramento, CA

---------
| 1 |   |
---------  Binary Soduko
|   |   |
---------
 
"C code. C code run. Run code run. Please!"
- Cynthia Dunning

Confidentiality Notice:  This message including any
attachments is for the sole use of the intended
recipient(s) and may contain confidential and privileged
information. Any unauthorized review, use, disclosure or
distribution is prohibited. If you are not the
intended recipient, please contact the sender and
delete any copies of this message. 




~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~|
Message: http://www.houseoffusion.com/lists.cfm/link=i:4:238975
Archives: http://www.houseoffusion.com/cf_lists/threads.cfm/4
Subscription: http://www.houseoffusion.com/lists.cfm/link=s:4
Unsubscribe: 
http://www.houseoffusion.com/cf_lists/unsubscribe.cfm?user=11502.10531.4
Donations & Support: http://www.houseoffusion.com/tiny.cfm/54

Reply via email to