RE: 10 Step Program

2001-11-30 Thread Rich Wild
appropriate. Its just one more thing to add to the consider list though. -Original Message- From: Dave Watts [mailto:[EMAIL PROTECTED]] Sent: 29 November 2001 18:58 To: CF-Talk Subject: RE: 10 Step Program I read about that in depressedpress.com. How is overall performance though

10 Step Program

2001-11-29 Thread Won Lee
Hi my name is Won Lee and I'm addicted to session variables. In an attempt to rid myself of all locking, I'm trying to stay away from application and session variables. One of the most common things is used for session variables is session.userID. How does one now emulate this functionality

RE: 10 Step Program

2001-11-29 Thread Declan Maher
Have you thought of using url.variables or passing vars in form.variables. -Original Message- From: Won Lee [mailto:[EMAIL PROTECTED]] Sent: 29 November 2001 17:19 To: CF-Talk Subject: 10 Step Program Hi my name is Won Lee and I'm addicted to session variables. In an attempt to rid

Re: 10 Step Program

2001-11-29 Thread Kwang Suh
client vars... client vars client vars good. - Original Message - From: Won Lee [EMAIL PROTECTED] To: CF-Talk [EMAIL PROTECTED] Sent: Thursday, November 29, 2001 10:18 AM Subject: 10 Step Program Hi my name is Won Lee and I'm addicted to session variables. In an attempt

Re: 10 Step Program

2001-11-29 Thread savan . thongvanh
i try to handle mine using cookies and timeouts. how does that hinder the use of cflocation? Won Lee [EMAIL PROTECTED] on 11/29/2001 11:18:55 AM Please respond to [EMAIL PROTECTED] To: CF-Talk [EMAIL PROTECTED] cc: Subject: 10 Step Program Hi my name is Won Lee and I'm addicted

Re: 10 Step Program

2001-11-29 Thread Kevin Schmidt
How about client variables? - Original Message - From: Declan Maher [EMAIL PROTECTED] To: CF-Talk [EMAIL PROTECTED] Sent: Thursday, November 29, 2001 11:20 AM Subject: RE: 10 Step Program Have you thought of using url.variables or passing vars in form.variables. -Original

RE: 10 Step Program

2001-11-29 Thread Rich Wild
, and very fast too... -Original Message- From: Won Lee [mailto:[EMAIL PROTECTED]] Sent: 29 November 2001 17:19 To: CF-Talk Subject: 10 Step Program Hi my name is Won Lee and I'm addicted to session variables. In an attempt to rid myself of all locking, I'm trying to stay

RE: 10 Step Program

2001-11-29 Thread Won Lee
a cflocation in them. Perhaps this is a design flaw, but I have to live with it. -Original Message- From: Kevin Schmidt [mailto:[EMAIL PROTECTED]] Sent: Thursday, November 29, 2001 12:27 PM To: CF-Talk Subject: Re: 10 Step Program How about client variables? - Original Message

RE: 10 Step Program

2001-11-29 Thread Won Lee
To: CF-Talk Subject: RE: 10 Step Program Rather than eliminate all your session and application variables you could write a custom tag that does all the locking for you and copies whatever session or application variables you want into a local scope for your delectation. eg: cf_copySharedVars vars

RE: 10 Step Program

2001-11-29 Thread savan . thongvanh
not that big a deal to me. Won Lee [EMAIL PROTECTED] on 11/29/2001 11:38:30 AM Please respond to [EMAIL PROTECTED] To: CF-Talk [EMAIL PROTECTED] cc: Subject: RE: 10 Step Program Hmm client vars. Why didn't I think about that. I don't want to keep using form variables. Currently I use a lot

Re: 10 Step Program

2001-11-29 Thread Sam Farmer
This is a great solution and one we use. I would suggest making them request variables though (easy access in custom tags) Sam - Original Message - From: Rich Wild [EMAIL PROTECTED] To: CF-Talk [EMAIL PROTECTED] Sent: Thursday, November 29, 2001 12:31 PM Subject: RE: 10 Step Program

RE: 10 Step Program

2001-11-29 Thread Dave Watts
I read about that in depressedpress.com. How is overall performance though? I can see it being useful on pages that read or write over session.variables a lot, but what about a site where you only access one session variable per page? If this is in reference to the concept of copying the