RE: Looped cfform unique variable names?

2005-04-13 Thread Paul Henderson
Thanks guys, now I can stop banging my head against the wall. -Original Message- From: Dave Watts [mailto:[EMAIL PROTECTED] Sent: Wednesday, April 13, 2005 1:22 PM To: CF-Talk Subject: RE: Looped cfform unique variable names? > Maybe I'm going about this the wrong way but, I&#x

RE: Looped cfform unique variable names?

2005-04-13 Thread Dave Watts
> Maybe I'm going about this the wrong way but, I'm building a > shopping cart and for the checkout page I've looped a cfform > because for each item the user has to specify the same 3 > values, for example Resolution. > > Note the textbox includes the looped ItemNum in the name to > make it's

RE: Looped cfform unique variable names?

2005-04-13 Thread Ian Skinner
al Message- From: Paul Henderson [mailto:[EMAIL PROTECTED] Sent: Wednesday, April 13, 2005 10:10 AM To: CF-Talk ....Subject: Looped cfform unique variable names? Maybe I'm going about this the wrong way but, I'm building a shopping cart and for the checkout

RE: Looped cfform unique variable names?

2005-04-13 Thread Gaulin, Mark
I think this syntax will work: Form["Resolution" & i] (or whatever generates a string that matches the field name on the previous age) -Original Message- From: Paul Henderson [mailto:[EMAIL PROTECTED] Sent: Wednesday, April 13, 2005 1:10 PM To: CF-Talk Subject: Looped

Looped cfform unique variable names?

2005-04-13 Thread Paul Henderson
Maybe I'm going about this the wrong way but, I'm building a shopping cart and for the checkout page I've looped a cfform because for each item the user has to specify the same 3 values, for example Resolution. Note the textbox includes the looped ItemNum in the name to make it's name unique. M