Adobe COLDFUSION 9 Manual page 710

Developing applications
Hide thumbs Also See for COLDFUSION 9:
Table of Contents

Advertisement

DEVELOPING COLDFUSION 9 APPLICATIONS
Requesting and Presenting Information
Control
Code
Check box
<cfinput type="Checkbox" name="ControlName" value="Yes|No">Yes
Reset button
<cfinput type="Reset" name="ControlName" value="DisplayName">
Submit button
<cfinput type="Submit" name="ControlName" value="DisplayName">
The following listing shows the form source in detail. To test the form and use it as input for later examples, save this
code as formpage.cfm.
<html>
<head>
<title>Input form</title>
</head>
<body>
<!--- Specify the action page in the form tag. The form variables will
pass to this page when the form is submitted. --->
<cfform action="actionpage.cfm" method="post">
<!--- Text box. --->
<p>
First Name: <cfinput type="Text" name="FirstName" size="20"maxlength="35"><br>
Last Name: <cfinput type="Text" name="LastName" size="20" maxlength="35"><br>
Salary: <cfinput type="Text" name="Salary" size="10" maxlength="10">
</p>
<!--- List box. --->
<p>
City
<cfselect name="City">
<option value="Arlington">Arlington
<option value="Boston">Boston
<option value="Cambridge">Cambridge
<option value="Minneapolis">Minneapolis
<option value="Seattle">Seattle
</cfselect>
</p>
<!--- Radio buttons. --->
<p>
Department:<br>
Last updated 8/5/2010
705

Advertisement

Table of Contents
loading

Table of Contents