RE: UDF question - extended

2002-03-17 Thread Chuck McElwee
, 2002 4:55 PM To: CF-Talk Subject: Re: UDF question I brought this option up in an earlier thread on this list and got a bit of a spanking. (smile) I run my main server with Single Threaded Sessions enabled, as well as Server and Application scopes set to Automatic read locking. I don't lock Session

RE: UDF question - extended

2002-03-17 Thread Mark A. Kruger - CFG
- From: Chuck McElwee [mailto:[EMAIL PROTECTED]] Sent: Sunday, March 17, 2002 4:05 PM To: CF-Talk Subject: RE: UDF question - extended Along with the locking issues, I've found some interesting anomalies. I use 'Full Checking' (development server only) and find that cfif isDefined(session.sessionid

UDF question

2002-03-16 Thread Howie Hamlin
Can I reference a query from within a UDF? I'm building a new shopping cart that has the items and quantities in a session query (session.basket) and I want to total the number of items that are currently in the query from a UDF. The query has a quantity field and I want the UDF to be

Re: UDF question

2002-03-16 Thread junkMail
[EMAIL PROTECTED] To: CF-Talk [EMAIL PROTECTED] Sent: Saturday, March 16, 2002 2:53 PM Subject: UDF question Can I reference a query from within a UDF? I'm building a new shopping cart that has the items and quantities in a session query

Re: UDF question

2002-03-16 Thread Howie Hamlin
, Howie - Original Message - From: junkMail [EMAIL PROTECTED] To: CF-Talk [EMAIL PROTECTED] Sent: Saturday, March 16, 2002 4:29 PM Subject: Re: UDF question Try something like this... function BasketItemCount() { var totitems=0; for (i = 1; i lte session.basket.recordcount; i

<    1   2