RE: Cookie and tracking

2001-02-11 Thread Maia, Eric
:44 AM To: CF-Talk Subject: RE: Cookie and tracking I'll second this comment. I have my cookies set to "ask first" and I never return to a site where I have to reject a cookie several times each time I load a page. (I always reject ad cookies, but accept ID/token cookies)

RE: Cookie and tracking

2001-02-08 Thread Aidan Whitehall
I'll second this comment. I have my cookies set to "ask first" and I never return to a site where I have to reject a cookie several times each time I load a page. (I always reject ad cookies, but accept ID/token cookies) I thought this behaviour was changed with 4.5... ? -- Aidan

RE: Cookie and tracking

2001-02-06 Thread Philip Arnold - ASP
Does anyone have suggestion on a method to drop a cookie on the homepage of a site and then track that cookie to figure who is a new user vs. returning user. One thing to add to everybody else's comments Check to make sure that the REFERRER isn't the current siteCF page, otherwise if the

RE: Cookie and tracking

2001-02-06 Thread Maia, Eric
lto:[EMAIL PROTECTED]] Sent: Tuesday, February 06, 2001 1:40 AM To: CF-Talk Subject: RE: Cookie and tracking Does anyone have suggestion on a method to drop a cookie on the homepage of a site and then track that cookie to figure who is a new user vs. returning user. One thing to add to everybody else'

Cookie and tracking

2001-02-05 Thread MJS @ Four Eyes
Hi, Does anyone have suggestion on a method to drop a cookie on the homepage of a site and then track that cookie to figure who is a new user vs. returning user. Thank you, Michael ~~ Structure your ColdFusion code with Fusebox. Get the

RE: Cookie and tracking

2001-02-05 Thread Sean Daniels
Does anyone have suggestion on a method to drop a cookie on the homepage of a site and then track that cookie to figure who is a new user vs. returning user. !-- home page code -- cfif isdefined("cookie.firstvisit") !-- user has been here before -- cfelse !-- user is

RE: Cookie and tracking

2001-02-05 Thread Phoeun Pha
Subject: Cookie and tracking Hi, Does anyone have suggestion on a method to drop a cookie on the homepage of a site and then track that cookie to figure who is a new user vs. returning user. Thank you, Michael ~~ Structure your ColdFusion code

Re: Cookie and tracking

2001-02-05 Thread Bud
On 2/5/01, MJS @ Four Eyes penned: Hi, Does anyone have suggestion on a method to drop a cookie on the homepage of a site and then track that cookie to figure who is a new user vs. returning user. cfif isdefined('cookie.beenhere') Welcome Back cfelse cfcookie name="beenhere" value="yup"