How to tell if a session has expired?

2004-02-10 Thread Jim McAtee
Is there a means of determining if a CF session has timed out?For instance, in the context of a shopping cart application.I've seen applications on other sites where you get a message to the effect of Your session has expired rather than just a Your shopping cart is empty.I'm trying to figure out

RE: How to tell if a session has expired?

2004-02-10 Thread Dave Watts
Is there a means of determining if a CF session has timed out? For instance, in the context of a shopping cart application. I've seen applications on other sites where you get a message to the effect of Your session has expired rather than just a Your shopping cart is empty. I'm trying to

RE: How to tell if a session has expired?

2004-02-10 Thread Cameron Childress
Childress Sumo Consulting Inc --- land:858.509.3098 cell:678.637.5072 aim:cameroncf email: [EMAIL PROTECTED] -Original Message- From: Jim McAtee [mailto:[EMAIL PROTECTED] Sent: Tuesday, February 10, 2004 2:03 PM To: CF-Talk Subject: How to tell if a session has expired? Is there a means

Re: How to tell if a session has expired?

2004-02-10 Thread Jim McAtee
- Original Message - From: Cameron Childress [EMAIL PROTECTED] To: CF-Talk [EMAIL PROTECTED] Sent: Tuesday, February 10, 2004 3:15 PM Subject: RE: How to tell if a session has expired? As far as a CF solution, I suppose you could set a cookie timestamp with each pageview and compare

RE: How to tell if a session has expired?

2004-02-10 Thread Nando
)#URLToken#/cfif, RefreshSession, width=150, height=50); watchSession(); } } watchSession(); /script /cfoutput -Original Message- From: Jim McAtee [mailto:[EMAIL PROTECTED] Sent: Tuesday, February 10, 2004 11:03 PM To: CF-Talk Subject: How to tell if a session has expired

how to tell if a session has expired

2002-04-11 Thread Ben Densmore
Can someone tell me how you can tell if a session has timed out? I just want to redirect someone to a different page if their session has timed out,I can't find any reference to this anywhere, I know it's gonna be something so simple, but can't seem to find it. Thanks, Ben

RE: how to tell if a session has expired

2002-04-11 Thread VAN VLIET, SCOTT E (SBCSI)
| +--+---+ -Original Message- From: Ben Densmore [mailto:[EMAIL PROTECTED]] Sent: Thursday, April 11, 2002 11:39 AM To: CF-Talk Subject: how to tell if a session has expired Can someone tell me how you can tell if a session has timed out? I just want

RE: how to tell if a session has expired

2002-04-11 Thread Cantrell, Adam
cfif isDefined(session.variablename) cflocation cfabort /cfif Adam. -Original Message- From: Ben Densmore [mailto:[EMAIL PROTECTED]] Sent: Thursday, April 11, 2002 1:39 PM To: CF-Talk Subject: how to tell if a session has expired Can someone tell me how you can

Re: how to tell if a session has expired

2002-04-11 Thread Douglas Brown
, 2002 11:39 AM Subject: how to tell if a session has expired Can someone tell me how you can tell if a session has timed out? I just want to redirect someone to a different page if their session has timed out,I can't find any reference to this anywhere, I know it's gonna be something so

Re: how to tell if a session has expired

2002-04-11 Thread Justin Scott
Services, Inc. http://www.sceiron.com - Original Message - From: Ben Densmore [EMAIL PROTECTED] To: CF-Talk [EMAIL PROTECTED] Sent: Thursday, April 11, 2002 2:39 PM Subject: how to tell if a session has expired Can someone tell me how you can tell if a session has timed out? I just

Re: how to tell if a session has expired

2002-04-11 Thread Ben Densmore
/cfif Success is a journey, not a destination!! Doug Brown - Original Message - From: Ben Densmore [EMAIL PROTECTED] To: CF-Talk [EMAIL PROTECTED] Sent: Thursday, April 11, 2002 11:39 AM Subject: how to tell if a session has expired Can someone tell me how you can tell if a session

RE: how to tell if a session has expired

2002-04-11 Thread John Wilker
/Founder, Inland Empire CFUG. www.red-omega.com more people are killed by donkeys than by airplane crashes each year -Original Message- From: Ben Densmore [mailto:[EMAIL PROTECTED]] Sent: Thursday, April 11, 2002 11:39 AM To: CF-Talk Subject: how to tell if a session has expired Can

Re: how to tell if a session has expired

2002-04-11 Thread Douglas Brown
, April 11, 2002 11:48 AM Subject: Re: how to tell if a session has expired in your application page just do a cfif(not(isDefined(session.loggedIn) cflocation url=login.cfm?expired=true /cfif Success is a journey, not a destination!! Doug Brown - Original Message - From: Ben

RE: how to tell if a session has expired

2002-04-11 Thread VAN VLIET, SCOTT E (SBCSI)
: Thursday, April 11, 2002 11:50 AM To: CF-Talk Subject: Re: how to tell if a session has expired I'm using this for a shopping cart I built, and the only session variable I am creating is one called session.cart which creates a structure to store the shopping cart stuff, I wanted to make it so

Re: how to tell if a session has expired

2002-04-11 Thread Douglas Brown
Message - From: Ben Densmore [EMAIL PROTECTED] To: CF-Talk [EMAIL PROTECTED] Sent: Thursday, April 11, 2002 11:50 AM Subject: Re: how to tell if a session has expired I'm using this for a shopping cart I built, and the only session variable I am creating is one called session.cart which creates

Re: how to tell if a session has expired

2002-04-11 Thread Sharon Diorio
their on...otherwise you can setup a nasty loop.) Sharon - Original Message - From: Ben Densmore [EMAIL PROTECTED] To: CF-Talk [EMAIL PROTECTED] Sent: Thursday, April 11, 2002 2:39 PM Subject: how to tell if a session has expired Can someone tell me how you can tell if a session has timed out? I

Re: how to tell if a session has expired

2002-04-11 Thread Ben Densmore
if a session has expired Can someone tell me how you can tell if a session has timed out? I just want to redirect someone to a different page if their session has timed out,I can't find any reference to this anywhere, I know it's gonna be something so simple, but can't seem

RE: how to tell if a session has expired

2002-04-11 Thread Ben Densmore
: [EMAIL PROTECTED]| http://www.sbc.com| +--+---+ -Original Message- From: Ben Densmore [mailto:[EMAIL PROTECTED]] Sent: Thursday, April 11, 2002 11:50 AM To: CF-Talk Subject: Re: how to tell if a session has expired I'm using