Thank you so much, I figured it was something simple that I was missing...good day.
Main Topics
Browse All TopicsHello,
I am trying to set up a simple form in ColdFusion with the form and action pages combined, but I keep getting the following error and cannot find area where the field name is mispelled. Is there any other reason that I would be getting this error? Thank you.
Error Diagnostic Information
An error occurred while evaluating the expression:
#form.office#
Error near line 57, column 23.
--------------------------
Error resolving parameter FORM.OFFICE
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 (#form.office#), occupying document position (57:22) to (57:34) in the template file D:\WebSites\wwwTeamPortals
Date/Time: 11/02/09 10:49:30
Browser: Mozilla/4.0 (compatible; MSIE 8.0; Windows NT 5.1; Trident/4.0; .NET CLR 1.1.4322; .NET CLR 2.0.50727; .NET CLR 3.0.4506.2152; .NET CLR 3.5.30729)
Remote Address: 76.9.124.2
HTTP Referrer: http://www.realestateone.n
This Question has been solved and asker verified All Experts Exchange premium technology solutions are available to subscription members.
Experts Exchange has been collecting answers to technology questions since 1996…3 million and counting! If you have a question, chances are we already have your answer.
If you can't find the exact answer you're looking for, ask our exclusive community of 50,000 experts. You’ll get a personalized answer from a trusted professional.
Thousands of free tech tips, tricks, how-to’s and tutorials are available in our peer reviewed articles section. See for yourself how smart our experts are, no login required.
Access the answers to your technology questions today.
30-day free trial. Register in 60 seconds.
Members of the expert community talk about why the experience at Experts Exchange is different than what you will find anywhere else.

Try it out and discover for yourself.
30-day free trial. Register in 60 seconds.
Join the community of experts here and help other tech pros by answering question in your area of expertise. You can earn FREE access to all Experts Exchange's premium features and resources.
Business Accounts
Answer for Membership
by: azadisaryevPosted on 2009-11-02 at 08:22:29ID: 25720757
you have your submit button in a separate <form> - only that form submits when you click it. that form does not have any of the fields you output inside your <cfif isdefined("form.submit")> block. thus you have the error you see: form.submit is defined, but none of the form fields you output exist.
make it all one <form>...</form> block.
Azadi