Re: cfloop/index question

2003-03-07 Thread Dina Hess
> > The reason each checkbox has a unique name (service + number) is so the > form > > can "autocheck" a particular service. Let's say a customer is on the > > "Fluorescent Bulb Disposal" page and hits the "Send Me More Info" button. > > The form comes up with "Fluorescent Bulb Disposal" (service 3

Re: cfloop/index question

2003-03-06 Thread Ewok
; <[EMAIL PROTECTED]> To: "CF-Talk" <[EMAIL PROTECTED]> Sent: Wednesday, March 05, 2003 8:35 PM Subject: RE: cfloop/index question > Here's what finally worked: > > Please send me more information on the following services: > > >NEQ "")&

RE: cfloop/index question

2003-03-05 Thread Les Mizzell
by the Service Names Works great now! Thanks everybody! Les -Original Message- From: Dina Hess [mailto:[EMAIL PROTECTED] Sent: Wednesday, March 05, 2003 5:16 PM To: CF-Talk Subject: Re: cfloop/index question Les, You may want to consider a different approach. For example, you could g

Re: cfloop/index question

2003-03-05 Thread Dina Hess
Les, You may want to consider a different approach. For example, you could give all of the "service" checkboxes one name, as in NAME="Service," and specify the service code in the value, as in VALUE="100." The value of each "checked" checkbox will be appended to FORM.service so, on the action pa

RE: cfloop/index question

2003-03-05 Thread Everett, Al
I don't think you need the evaluate. > -Original Message- > From: Randell B Adkins [mailto:[EMAIL PROTECTED] > Sent: Wednesday, March 05, 2003 12:44 PM > To: CF-Talk > Subject: Re: cfloop/index question > > > I would set a temp variable and check that var.

RE: cfloop/index question

2003-03-05 Thread Cantrell, Adam
I'm sure there's a creative way to avoid the evaluate() in this, somebody else can share with us what way that might be, but here's one way of doing it: Adam. > -Original Message- > From: Les Mizzell [mailto:[EMAIL PROTECTED] > Sent: Wednesday, Ma

Re: cfloop/index question

2003-03-05 Thread Randell B Adkins
I would set a temp variable and check that var. I would use CFLOOP with the index of xx to get your 100, 200 set tempValue = Evaluate("form.service" & xx) —- do this —- do that >>> [EMAIL PROTECTED] 03/05/03 12:13PM >>> I've got a form with a large list of services that a client can cli