User Guide
Chapter 1: ColdFusion Tags 191
<HTML>
<HEAD>
<TITLE>
CFSELECT Example
</TITLE>
</HEAD>
<BODY>
<H3>CFSELECT Example</H3>
<!--- Use CFFORM when using other CFINPUT tools --->
<CFFORM ACTION="cfselect.cfm" METHOD="POST" ENABLECAB="Yes">
<!--- Use CFSELECT to present the contents of the query by column --->
<H3>CFSELECT Presentation of Data</H3>
<H4>Click on an employee’s last name and hit "see information for
this employee" to see expanded information.</H4>
<CFSELECT NAME="EmployeeNames" MESSAGE="Select an Employee Name"
SIZE="#getEmployees.recordcount#" QUERY="GetEmployees"
VALUE="LastName" REQUIRED="No">
<OPTION value="">Select All
</CFSELECT>
...