I have a loop over all formfields. One formfield, pos, which contains 
checkboxes, ends up being looped over *per checkbox*.  In other words, if 
pos contains 34,36,42 and I loop over it, I get pos three times, each time 
containing 34,36,42.  Is something wrong with my code?  Is there a another 
way to loop and get distinct name/value pairings?

<CFLOOP list="#form.fieldnames#" index="thisone">
<CFOUTPUT>
  <input type="Hidden" name="#thisone#" value="#Evaluate(thisone)#">
</cfoutput>
</cfloop>

Thanks in advance.
Andrew Kopelman
Weidlinger Associates
[EMAIL PROTECTED]
________________________________________________________________________
Get Your Private, Free E-mail from MSN Hotmail at http://www.hotmail.com

------------------------------------------------------------------------------
Archives: http://www.mail-archive.com/cf-talk@houseoffusion.com/
To Unsubscribe visit 
http://www.houseoffusion.com/index.cfm?sidebar=lists&body=lists/cf_talk or send a 
message to [EMAIL PROTECTED] with 'unsubscribe' in the body.

Reply via email to