![MACROMEDIA COLDFUSION 4.5-DEVELOPING WEB Скачать руководство пользователя страница 73](http://html1.mh-extra.com/html/macromedia/coldfusion-4-5-developing-web/coldfusion-4-5-developing-web_develop-manual_3286369073.webp)
Chapter 5: Making Variables Dynamic
47
4
</SELECT>
<!-- radio buttons -->
<P>
Department:<BR>
<INPUT TYPE="radio" name="Department" value="Training">Training<BR>
<INPUT TYPE="radio" name="Department" value="Sales">Sales<BR>
<INPUT TYPE="radio" name="Department" value="Marketing">Marketing<BR>
</P>
<!-- check box -->
<P>
Contractor? <input type="checkbox" name="Contractor" value="Yes"
checked>Yes
</P>
<!-- reset button -->
<INPUT TYPE="reset" NAME="ResetForm" VALUE="Clear Form">
<!-- submit button -->
<INPUT TYPE="submit" NAME="SubmitForm" VALUE="Submit">
</FORM>
</BODY>
</HTML>
3.
Save the page as
formpage.cfm
.
4.
View
formpage.cfm
in a browser.
The changes that you just made appear in the form.
Remember that you need an action page to submit values.
Creating Dynamic Checkboxes and Multiple Select Boxes
When an HTML form contains either a list of checkboxes with the same name or a
multiple select box, the user’s entries are made available as a comma-delimited list
with the selected values. These lists can be very useful for a wide range of inputs.
Note
If no value is entered for a checkbox or multiple select lists, no variable is
created.The SQL INSERT statement will not work correctly if there are no
values. To correct this problem, make the form fields required, use
Dynamic SQL, or use CFPARAM to establish a default value for the form
field..
Checkboxes
When you put a series of checkboxes with the same name in an HTML form, the
variable that is created contains a comma-delimited list of values. The values can be
either numeric values or alphanumeric strings. These two types of values are treated
slightly differently.
Содержание COLDFUSION 4.5-DEVELOPING WEB
Страница 1: ...Allaire Corporation Developing Web Applications with ColdFusion ColdFusion 4 5...
Страница 14: ...xiv Developing Web Applications with ColdFusion...
Страница 26: ...xxvi Developing Web Applications with ColdFusion...
Страница 34: ...8 Developing Web Applications with ColdFusion...
Страница 70: ...44 Developing Web Applications with ColdFusion...
Страница 84: ...58 Developing Web Applications with ColdFusion...
Страница 114: ...88 Developing Web Applications with ColdFusion...
Страница 148: ...122 Developing Web Applications with ColdFusion...
Страница 174: ...148 Developing Web Applications with ColdFusion...
Страница 208: ...182 Developing Web Applications with ColdFusion...
Страница 244: ...218 Developing Web Applications with ColdFusion...
Страница 274: ...248 Developing Web Applications with ColdFusion...
Страница 288: ...262 Developing Web Applications with ColdFusion...
Страница 300: ...274 Developing Web Applications with ColdFusion...
Страница 350: ...324 Developing Web Applications with ColdFusion...
Страница 362: ...336 Developing Web Applications with ColdFusion...