I've physically deleted all of the cookies.

In my application, I have a series of pages to step through.  In my tests
yesterday, I displayed the cookie value at the top of each page.  The cookie
value changed with each step of the page, which suggests that the cookie is
being written with every page load (even though cookies are turned off in
the browser).

This is how the cookie is being set on the Application.cfm page

<!--- check to see if a PrimID has been set yet or not --->
<cfif NOT IsDefined('Cookie.PrimID')>

<!--- set this cookie to expire within a certain time. --->
<cfcookie name="PrimID"
          value="#CreateUUID()#"
          expires="#CreateTimeSpan(90,0,0,0)#">
                  
</cfif>


=========================
Howard Owens
Web Producer
InsideVC.com
mailto:[EMAIL PROTECTED]
=========================

> -----Original Message-----
> From: Dave Hannum [SMTP:[EMAIL PROTECTED]]
> Sent: Thursday, May 18, 2000 5:26 AM
> To:   [EMAIL PROTECTED]
> Subject:      Re: where are these cookies coming from?
> 
> If the cookies were set previously with future or no expiration date, you
> must delete the cookies:
> 
> <CFIF IsDefines("COOKIE.primID")>
>     <CFCOOKIE NAME="primID" VALUE="" EXPIRES="NOW">
> <CFELSE>
>     some stuff here about cookies
> </CFIF>
> 
> Dave
> 
> 
> =================================
> "What we need  is a list of specific unknown problems we will encounter"
> 
> David Hannum
> Web Analyst/Programmer
> Ohio University
> [EMAIL PROTECTED]
> (740) 597-2524
> 
> 
> 
> ----- Original Message -----
> From: Owens, Howard <[EMAIL PROTECTED]>
> To: <[EMAIL PROTECTED]>
> Sent: Wednesday, May 17, 2000 6:04 PM
> Subject: where are these cookies coming from?
> 
> 
> 
> 
> On previous sites it seems like I've used this cookie test and it's worked
> ....
> 
> <cfif NOT IsDefined('cookie.primID')>
> 
> some stuff here about cookies
> 
> </cfif>
> 
> But on this current site I'm working on, that's not working.  Even though
> I'm not allowing cookies to be set in either Netscape or IE, I'm still
> seeing cookies on the Web page (through doing
> <cfoutput>#cookie.primID#</cfoutput>).
> 
> I've tried several different things and can't figure out why these cookies
> are being set.
> 
> Am I just misremembering how I've done cookie tests in the past or is
> there
> something else I'm missing?
> 
> H.
> 
> 
> 
------------------------------------------------------------------------------
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.

Reply via email to