This is only for complex session vars tho .. like structs ? ----- Original Message ----- From: "Chris Tazewell" <[EMAIL PROTECTED]> To: <[EMAIL PROTECTED]> Sent: Wednesday, November 05, 2003 2:37 PM Subject: Re: [ cf-dev ] Request scope
> > Isn't this only true is you have not copied the value back again...? > > It's irrelevant. If you use > > <cfset Request.MyVar = Session.MyVar> > > and then access Request.MyVar... you're still accessing the shared scope > variable indirectly > > You need to use > > <cfset Request.MyVar = Duplicate(Session.MyVar)> > > Taz > > > > -- > ** Archive: http://www.mail-archive.com/dev%40lists.cfdeveloper.co.uk/ > > To unsubscribe, e-mail: [EMAIL PROTECTED] > For additional commands, e-mail: [EMAIL PROTECTED] > For human help, e-mail: [EMAIL PROTECTED] > -- ** Archive: http://www.mail-archive.com/dev%40lists.cfdeveloper.co.uk/ To unsubscribe, e-mail: [EMAIL PROTECTED] For additional commands, e-mail: [EMAIL PROTECTED] For human help, e-mail: [EMAIL PROTECTED]
