Re: Looping through 5 session vars

2001-09-05 Thread W Luke
Thanks Jeffry - Original Message - From: "Jeffry Houser" <[EMAIL PROTECTED]> Newsgroups: cf-talk Sent: Wednesday, September 05, 2001 6:21 PM Subject: RE: Looping through 5 session vars > > I would do one CFIF: > > or (not IsDefined("se

RE: Looping through 5 session vars [Using Loop]

2001-09-05 Thread Billy Ng
You could do it in one CFIF -- OR -- LoL, probably not worth it. Billy -Original Message- From: W Luke [mailto:[EMAIL PROTECTED]] Sent: September 4, 2001 7:25 PM To: CF-Talk Subject: Looping through 5 session vars Hi, I need to loop th

RE: Looping through 5 session vars

2001-09-05 Thread Jeffry Houser
I would do one CFIF: Don't forget to do a read-only lock to the above statement. No loop needed. >Hi, > >I need to loop through 5 session variables to check if any one of them >hasn't been defined. (and if so, cflocation the user). > >How can I do this? > >Thanks > >Will > ~

RE: Looping through 5 session vars

2001-09-04 Thread Shawn Grover
if it's only 5, then I'd do CFIF blocks with the IsDefined function. If it's not defined, set a Redirect Flag. then at the end, if the flag is true, do the cflocation. Setting up a loop through the Session vars would catch ALL session vars. Even if you were to do the loop, and check only those