Hi all, I'm using client variables set in cookies. I want the following session variables to expire when the user's browser is closed, so i manually set them in cookies with no expiration date like this, overwriting the automatically generated cookie (this technqiue is from the Danesh "Mastering" book): <cfcookie name="CFID" value="#session.CFID#"> <cfcookie name="CFTOKEN" value="#session.CFTOKEN#"> I want my client variables to expire at the same time, so i rewrite that cookie as well: <cfcookie name="CFCLIENT_METS" value="#client.var1#,#client.var2#"> When I close my browser, and open up the cookie file, the CFID and CFTOKEN have disappeared like they were meant to. But the CFCLIENT_METS is still there. I've deleted the cookie files and tested repeatedly under both IE5 and NN4.7 but no joy. I've checked the cookie file and my CFCOOKIE is generating the same text string as the CF auto created cookie. There is a single CFLOCK around all three CFCOOKIE calls. Does anyone know what is happening? Is there a way around this? Thanks, K. ------------------------------------------------------------------------------ Archives: http://www.eGroups.com/list/cf-talk To Unsubscribe visit http://www.houseoffusion.com/index.cfm?sidebar=lists&body=lists/cf_talk or send a message to [EMAIL PROTECTED] with 'unsubscribe' in the body.

