| | |
<cfinput type="checkbox"> Validation
Please support our ColdFusion advertiser: PostgreSQL or MySQL? Compare and contrast the two most popular open source databases
![]() |
•
•
Join Date: Feb 2008
Posts: 16
Reputation:
Solved Threads: 0
Hello friends,
I want to validate this two checkbox variables on an action page and also an update page
by default I checked one of them, how can I check if it is checked and what is the best way to store this in the database and have the right checkbox checked when you want to update the form.
I want to validate this two checkbox variables on an action page and also an update page
coldfusion Syntax (Toggle Plain Text)
<cfinput type="checkbox" name="gender"checked> </label></td> <td>Female</td> <td><label> <cfinput type="checkbox" name="gender"> </label></td>
Last edited by peter_budo; Mar 30th, 2008 at 6:37 am. Reason: Keep It Organized - please use [code] tags
You need to specify a value for each one.
For instance:
When you process the page, the Form.Gender variable will contain either "Male" or "Female" depending on which is checked (or "Male,Female" if both are checked, which can be used as a list incidentally). Make sure to use
<cfif IsDefined("Form.Gender")> before checking for the values, otherwise it will throw an error if none of the checkboxes are checked, unless you've created it with <cfparam>.
For instance:
ColdFusion Syntax (Toggle Plain Text)
<cfinput type="checkbox" name="gender" value="Male" checked> </label></td> <td>Female</td> <td><label> <cfinput type="checkbox" name="gender" value="Female"> </label></td>
When you process the page, the Form.Gender variable will contain either "Male" or "Female" depending on which is checked (or "Male,Female" if both are checked, which can be used as a list incidentally). Make sure to use
<cfif IsDefined("Form.Gender")> before checking for the values, otherwise it will throw an error if none of the checkboxes are checked, unless you've created it with <cfparam>.
ColdFusion Syntax (Toggle Plain Text)
<cfparam name="Form.Gender" default=""> <cfif Form.Gender EQ "Male"> <!--- Do something ---> <cfelseif Form.Gender EQ "Female"> <!--- Do something else ---> </cfif>
![]() |
Other Threads in the ColdFusion Forum
- Previous Thread: <cfquery> Undefined
- Next Thread: mdf as datasource
Views: 5871 | Replies: 2
| Thread Tools | Search this Thread |
Tag cloud for ColdFusion





