Re: Auto logout when leaving the application

2002-04-03 Thread ccook22
Good question. I am also interested in this response, but with an added element. What if a user closes the browser, how do you kill client/session variables, presumably someone could close the browser thinking they are logged out, the next person wanders up and sees the first persons

RE: Auto logout when leaving the application

2002-04-03 Thread VAN VLIET, SCOTT E (SBCSI)
PROTECTED]] Sent: Wednesday, April 03, 2002 8:41 AM To: CF-Talk Subject: Re: Auto logout when leaving the application Good question. I am also interested in this response, but with an added element. What if a user closes the browser, how do you kill client/session variables, presumably someone could

RE: Auto logout when leaving the application

2002-04-03 Thread Shawn Regan
PROTECTED]] Sent: Wednesday, April 03, 2002 8:49 AM To: CF-Talk Subject: RE: Auto logout when leaving the application I am working on a custom tag that will solve this, and will post it when I finish. -- Scott Van Vliet Senior Analyst SBC Services, Inc. ITO Enterprise Tools Office: 858.886.3878

RE: Auto logout when leaving the application

2002-04-03 Thread VAN VLIET, SCOTT E (SBCSI)
: Wednesday, April 03, 2002 9:20 AM To: CF-Talk Subject: RE: Auto logout when leaving the application I believe I got this a while back from hal helms website. cfif IsDefined(Cookie.CFID) AND IsDefined(Cookie.CFTOKEN) cfset cfid_local = Cookie.CFID cfset cftoken_local = Cookie.CFTOKEN

CF_AutoLogout (was RE: Auto logout when leaving the application)

2002-04-03 Thread VAN VLIET, SCOTT E (SBCSI)
PROTECTED] -Original Message- From: VAN VLIET, SCOTT E (SBCSI) [mailto:[EMAIL PROTECTED]] Sent: Wednesday, April 03, 2002 11:05 AM To: CF-Talk Subject: RE: Auto logout when leaving the application I am building a JS tool that will automate this process. I will post it.. -- Scott Van Vliet

Re: Auto logout when leaving the application

2002-04-03 Thread John Quarto-vonTivadar
= Cookie.CFID cfset localCFTOKEN = Cookie.CFTOKEN cfcookie name=CFID value=#localCFID# cfcookie name=CFTOKEN value=#localCFTOKEN# /cfif - Original Message - From: [EMAIL PROTECTED] To: CF-Talk [EMAIL PROTECTED] Sent: Wednesday, April 03, 2002 11:41 AM Subject: Re: Auto logout when