> 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]

Reply via email to