RE: CFAPPLICATION - Need some advice

2000-08-10 Thread Matt Rodosky
ECTED]] Sent: Thursday, August 10, 2000 11:00 AM To: '[EMAIL PROTECTED]' Subject: RE: CFAPPLICATION - Need some advice OK works perfectly but I have one more question to help me understand WHY it's working! I see that when the user closes there browser the cookie gets killed. Then w

RE: CFAPPLICATION - Need some advice

2000-08-10 Thread Matt Rodosky
rt to clean up old client vars. -Original Message- From: [EMAIL PROTECTED] [mailto:[EMAIL PROTECTED]] Sent: Thursday, August 10, 2000 10:37 AM To: [EMAIL PROTECTED] Subject: RE: CFAPPLICATION - Need some advice Curious - in what way does this mess up client vars in a database? Doesn't

RE: CFAPPLICATION - Need some advice

2000-08-10 Thread Andy Ewings
on when leaving the site?I assume it must be when the browser is closed. A happier but still perplexed Andy! -Original Message- From: Matt Rodosky [mailto:[EMAIL PROTECTED]] Sent: 09 August 2000 20:29 To: [EMAIL PROTECTED] Subject: RE: CFAPPLICATION - Need some advice Actually rewrit

RE: CFAPPLICATION - Need some advice

2000-08-10 Thread mherbene
ION - Need some advice Superstar.that worked a treat.you don't know how long I've been looking at this!! -Original Message- From: Matt Rodosky [mailto:[EMAIL PROTECTED]] Sent: 09 August 2000 20:29 To: [EMAIL PROTECTED] Subject: RE: CFAPPLICATION - Need some advice Actua

RE: CFAPPLICATION - Need some advice

2000-08-10 Thread Andy Ewings
Superstar.that worked a treat.you don't know how long I've been looking at this!! -Original Message- From: Matt Rodosky [mailto:[EMAIL PROTECTED]] Sent: 09 August 2000 20:29 To: [EMAIL PROTECTED] Subject: RE: CFAPPLICATION - Need some advice Actually rewriting the coo

RE: CFAPPLICATION - Need some advice

2000-08-10 Thread Andy Ewings
Thanks...I'll try it and let you know how I get on.. -Original Message- From: Matt Rodosky [mailto:[EMAIL PROTECTED]] Sent: 10 August 2000 15:57 To: [EMAIL PROTECTED] Subject: RE: CFAPPLICATION - Need some advice Yes, setting the cookie without an expires attribute makes a c

RE: CFAPPLICATION - Need some advice

2000-08-10 Thread Matt Rodosky
Your client variable data will build up but scheduling a purge of old data should be easy enough. Matt -Original Message- From: Andy Ewings [mailto:[EMAIL PROTECTED]] Sent: Thursday, August 10, 2000 5:10 AM To: '[EMAIL PROTECTED]' Subject: RE: CFAPPLICATION - Need some advice

RE: CFAPPLICATION - Need some advice

2000-08-10 Thread Andy Ewings
iable data in the database but I guess I can get CF to purge this on a regular basis. -Original Message- From: [EMAIL PROTECTED] [mailto:[EMAIL PROTECTED]] Sent: 09 August 2000 23:39 To: [EMAIL PROTECTED] Cc: [EMAIL PROTECTED] Subject: RE: CFAPPLICATION - Need some advice > > Put t

RE: CFAPPLICATION - Need some advice

2000-08-09 Thread Peter Theobald
Thank you for that clear explanation. I was scratching my head at this code... :-) At 06:38 PM 8/9/00 -0400, Dave Watts wrote: >> > Put this code in your application.cfm file. It will kill the session >> > variables when the user closes the browser: >> > >> > >> > >> > >> > >> > >> >

RE: CFAPPLICATION - Need some advice

2000-08-09 Thread Dave Watts
> > Put this code in your application.cfm file. It will kill the session > > variables when the user closes the browser: > > > > > > > > > > > > > > > > ... > I don't think this will do what we are hoping it will. It looks to > me as if all it's doing is testing to see if the sessio

RE: CFAPPLICATION - Need some advice

2000-08-09 Thread Matt Rodosky
t 09, 2000 11:10 AM To: '[EMAIL PROTECTED]' Subject: RE: CFAPPLICATION - Need some advice Okso are you saying that when you re-write the cookie the session/client variables are cleared? If that is the case what happens on the server side? If I am storing client variables in a datab

RE: CFAPPLICATION - Need some advice

2000-08-09 Thread Andy Ewings
Rodosky [mailto:[EMAIL PROTECTED]] Sent: 09 August 2000 17:41 To: [EMAIL PROTECTED] Subject: RE: CFAPPLICATION - Need some advice The code will keep session variables going as long as the browser stays open. It will overwrite the old cfid/token when a new browser window is opened, the result is

RE: CFAPPLICATION - Need some advice

2000-08-09 Thread Robert Everland
dosky [mailto:[EMAIL PROTECTED]] Sent: Wednesday, August 09, 2000 12:41 PM To: [EMAIL PROTECTED] Subject: RE: CFAPPLICATION - Need some advice The code will keep session variables going as long as the browser stays open. It will overwrite the old cfid/token when a new browser window is opened, the r

RE: CFAPPLICATION - Need some advice

2000-08-09 Thread Matt Rodosky
]] Sent: Wednesday, August 09, 2000 10:02 AM To: '[EMAIL PROTECTED]' Subject: RE: CFAPPLICATION - Need some advice I don't think this will do what we are hoping it will. It looks to me as if all it's doing is testing to see if the session is open, if it is it's reading th

RE: CFAPPLICATION - Need some advice

2000-08-09 Thread Andy Ewings
ssage- From: Matt Rodosky [mailto:[EMAIL PROTECTED]] Sent: 09 August 2000 16:27 To: [EMAIL PROTECTED] Subject: RE: CFAPPLICATION - Need some advice Put this code in your application.cfm file. It will kill the session variables when the user closes the browser: -Original Me

RE: CFAPPLICATION - Need some advice

2000-08-09 Thread Matt Rodosky
;[EMAIL PROTECTED]' > Asunto: RE: CFAPPLICATION - Need some advice > > > Session management is a bit of a nightmare in CF in my > opinion. If the user > closes their browser their session doesn't expire > automatically. One only > way to force it to expire is to use t

RE: CFAPPLICATION - Need some advice

2000-08-09 Thread Miguel
OTECTED]' > Asunto: RE: CFAPPLICATION - Need some advice > > > Session management is a bit of a nightmare in CF in my > opinion. If the user > closes their browser their session doesn't expire > automatically. One only > way to force it to expire is to use the 'On

RE: CFAPPLICATION - Need some advice

2000-08-09 Thread Andy Ewings
Session management is a bit of a nightmare in CF in my opinion. If the user closes their browser their session doesn't expire automatically. One only way to force it to expire is to use the 'OnUnload' event of the browser to trigger some Java Script which ends the session. If anyone else has an