![MACROMEDIA COLDFUSION 4.5-DEVELOPING WEB Develop Manual Download Page 74](http://html1.mh-extra.com/html/macromedia/coldfusion-4-5-developing-web/coldfusion-4-5-developing-web_develop-manual_3286369074.webp)
48
Developing Web Applications with ColdFusion
Searching numeric values
Suppose you want a user to select one or more departments using checkboxes. You
query the database to retrieve detailed information on the selected department(s).
Select one or more departments to get information on:
<INPUT TYPE="checkbox"
NAME="SelectedDept"
VALUE="1">
Training<BR>
<INPUT TYPE="checkbox"
NAME="SelectedDept"
VALUE="2">
Marketing<BR>
<INPUT TYPE="checkbox"
NAME="SelectedDept"
VALUE="3">
HR<BR>
<INPUT TYPE="checkbox"
NAME="SelectedDept"
VALUE="4">
Sales<BR>
<INPUT TYPE="hidden"
NAME="SelectedDepts_required"
VALUE="You must select at least one organization.">
The text displayed to the user is the name of the department, but the VALUE attribute
of each checkbox corresponds to the underlying database primary key for the
department’s record.
If the user checked the Marketing and Sales items, the value of the SelectedDept form
field would be "2,4." If this parameter were used, the following would be the resulting
SQL statement:
SELECT *
FROM Departments
WHERE Department_ID IN ( #form.SelectedDept# )
The statement sent to the database would be:
SELECT *
FROM Departments
WHERE Department_ID IN ( 2,4 )
Searching string values
To search for a database field containing string values (instead of numeric), you must
modify both the checkbox and CFQUERY syntax.
Summary of Contents for COLDFUSION 4.5-DEVELOPING WEB
Page 1: ...Allaire Corporation Developing Web Applications with ColdFusion ColdFusion 4 5...
Page 14: ...xiv Developing Web Applications with ColdFusion...
Page 26: ...xxvi Developing Web Applications with ColdFusion...
Page 34: ...8 Developing Web Applications with ColdFusion...
Page 70: ...44 Developing Web Applications with ColdFusion...
Page 84: ...58 Developing Web Applications with ColdFusion...
Page 114: ...88 Developing Web Applications with ColdFusion...
Page 148: ...122 Developing Web Applications with ColdFusion...
Page 174: ...148 Developing Web Applications with ColdFusion...
Page 208: ...182 Developing Web Applications with ColdFusion...
Page 244: ...218 Developing Web Applications with ColdFusion...
Page 274: ...248 Developing Web Applications with ColdFusion...
Page 288: ...262 Developing Web Applications with ColdFusion...
Page 300: ...274 Developing Web Applications with ColdFusion...
Page 350: ...324 Developing Web Applications with ColdFusion...
Page 362: ...336 Developing Web Applications with ColdFusion...