> > You'll have to remember what control items you have in
> > your program. One common way of dealing with it is to
> > do <cfparam>'s for all your checkboxes in your action
> > page.
>
> Thanks, but if you look at the code I posted with my question, 
> you'll see that's exactly what I am doing. Any ideas what else 
> could be wrong.
>
> ...
> 
>> <cfloop from="1" to="50" index="p">
>>      <cfset str="form.include" &
>> "#numberformat(p,"00_")#"> 
>>      <cfparam name="str" default="0">
>>      <cfoutput>#str#</cfoutput>
>> </cfloop>

It doesn't look like your code is doing what you think it's doing, though.
You're setting a variable "str" equal to the expected variable name, but
your CFPARAM is simply setting the variable str to zero if it doesn't
already exist, rather than setting the variable name contained within str to
zero.

Dave Watts, CTO, Fig Leaf Software 
http://www.figleaf.com/ 
voice: (202) 797-5496 
~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
Get the mailserver that powers this list at http://www.coolfusion.com
FAQ: http://www.thenetprofits.co.uk/coldfusion/faq
Archives: http://www.mail-archive.com/[email protected]/
Unsubscribe: http://www.houseoffusion.com/index.cfm?sidebar=lists

Reply via email to