I imagine you used something like the code below to expire the cookies. The only
thing I can think of is that it is expiring one of the cookies and leaving the
other intact. then they login again and it sets another to their browser. Maybe
looping through somehow to check


<cfloop from="1" to="10" index="count">
    <cfif IsDefined("Cookie.cookieName")>
            <cfoutput>#count#&nbsp;</cfoutput>I am still here<br>
            <CFCOOKIE NAME="cookieName" EXPIRES="NOW">
    <cfelse>
        <cfoutput>#count#&nbsp;</cfoutput>I am now gone<br>
    </cfif>
</cfloop>




"Success is a journey, not a destination!!"



Doug Brown
----- Original Message -----
From: "J L" <[EMAIL PROTECTED]>
To: "CF-Talk" <[EMAIL PROTECTED]>
Sent: Thursday, April 11, 2002 8:17 AM
Subject: Cookies


> hi all,
>
> What is the best way to delete all the cookies in clients' browsers?
> Somehow many of our clients' browsers have a pair of cookies which are
> exactly the same (Same name and same value). And I have tried expiring
> two times of that cookie and it does not work.
>
> Thanks,
> J
> _______________________________________________________________
> Get the FREE email that has everyone talking at
> http://www.mail2world.com
>
> 
______________________________________________________________________
Structure your ColdFusion code with Fusebox. Get the official book at 
http://www.fusionauthority.com/bkinfo.cfm
FAQ: http://www.thenetprofits.co.uk/coldfusion/faq
Archives: http://www.mail-archive.com/[email protected]/
Unsubscribe: http://www.houseoffusion.com/index.cfm?sidebar=lists

Reply via email to