I don't see any problems with the response you are getting.
But just in case this is of any use, below is the code I normally use to clear sessions on browser close and it seems to work fine regardless of browser.
<cfif IsDefined( "Cookie.CFID" ) AND IsDefined( "Cookie.CFTOKEN" )> <cfset localCFID = Cookie.CFID> <cfset localCFTOKEN = Cookie.CFTOKEN> <cfcookie name="CFID" value="#localCFID#"> <cfcookie name="CFTOKEN" value="#localCFTOKEN#"> </cfif>
I have tried that too, but same end result in IE. I'm sure it's something to do with the app running in a virtual directory.
BTW, if you leave setClientCookies set to yes for the application and then use the code snippet above, the client will receive two cfid cookies and two cftoken cookies. This doesn't cause any problems as the latest cookie value is the one accepted by the client - I'm just explaining why I setClientCookies to no and use session.cfid and session.cftoken
Mark
-- These lists are syncronised with the CFDeveloper forum at http://forum.cfdeveloper.co.uk/ Archive: http://www.mail-archive.com/dev%40lists.cfdeveloper.co.uk/
CFDeveloper Sponsors and contributors:-
*Hosting and support provided by CFMXhosting.co.uk* :: *ActivePDF provided by
activepdf.com*
*Forums provided by fusetalk.com* :: *ProWorkFlow provided by proworkflow.com*
*Tutorials provided by helmguru.com* :: *Lists hosted by gradwell.com*To unsubscribe, e-mail: [EMAIL PROTECTED]
