Checkbox values are not passed.. if none of the checkboxes are selected. Use
isDefined("form.notary") to check for existance or...
better
use cfparam to default
<cfparam name="form.myCheckBox" value="1">

Hope this helps
Joe



On Thu, 7 Nov 2002 11:00:17 -0600  "Clark, Aimee" <[EMAIL PROTECTED]>
wrote:

> I have a page in which there are two fields
> that are checkboxes. I am
> looping those fields with separate list cfloops
> and finding the values that
> have been selected and writing the id and the
> name of the field to a table.
> Problem is, I am getting an error when both
> cfloops are on the same page.
> How do I fix this? 
>  
> The error I am receiving is this:
>  
> An error occurred while evaluating the
> expression: 
> 
> 
> "#form.notary#"
> 
> 
> 
> Error near line 50, column 16. 
>   _____  
> 
> 
> Error resolving parameter FORM.NOTARY 
> 
> 
> 
> The specified form field cannot be found. This
> problem is very likely due to
> the fact that you have misspelled the form
> field name. 
> 
> 
> 
> 
> The error occurred while processing an element
> with a general identifier of
> (CFLOOP), occupying document position (50:1) to
> (50:49).
> 
> This is the code I am using:
> 
> 
> 
> 
> 
> insert into EmployeeNotaries
>  (empid, notarystate)
>  values('#ID#', '#notarystate#')
> 
>  
> 
> 
> 
> 
> 
> insert into EmployeeLanguages
>  (empid, languagename)
>  values('#ID#', '#languagename#')
> 
> 
> 
> Any ideas or assistance would be greatly
> appreciated.
> 
> Thanks,    
> 
> Aimee' Clark
> 
> 
> 
~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~|
Archives: http://www.houseoffusion.com/cf_lists/index.cfm?forumid=4
Subscription: 
http://www.houseoffusion.com/cf_lists/index.cfm?method=subscribe&forumid=4
FAQ: http://www.thenetprofits.co.uk/coldfusion/faq
Structure your ColdFusion code with Fusebox. Get the official book at 
http://www.fusionauthority.com/bkinfo.cfm

Reply via email to