Re: Problem with components as session variables

2003-03-01 Thread Sean A Corfield
The infamous page context bug! A CFC stored in a shared scope cannot reference other shared scopes or use cfoutput. The bug is that when a CFC is first created, the context of the page request that created it is 'stamped' on the CFC instance. When the CFC is referenced from a subsequent page

RE: Problem with components as session variables

2003-03-01 Thread Andy Ousterhout
Sean, Thanks. Andy PS: I only use outputting for debugging purposes and was curious why it didn't work for shared scopes. -Original Message- From: Sean A Corfield [mailto:[EMAIL PROTECTED] Sent: Saturday, March 01, 2003 3:37 PM To: CF-Talk Subject: Re: Problem with components