Whatever message this page gives is out now! Go check it out!
Control | Description | For more information |
Embeds a custom Java applet in the form. Not supported in Flash format forms. | ||
Displays an interactive Flash calendar that can be included in an HTML or Flash format form. ignored in XML skinable forms. The calendar lets a user select a date for submission as a form variable. | The cfcalendar tag in the CFML Reference | |
Creates a container control for organizing and formatting multiple form controls. Used in the cfform tag body of Flash and XML skinable forms. Ignored in HTML forms. | ||
Inserts a horizontal line, a vertical line, or formatted or unformatted text in a Flash form. Used in the cfform or cfformgroup tag body for Flash and XML forms. Ignored in HTML forms. | ||
Creates a Java applet or Flash data grid that you can populate from a query or by defining the contents of individual cells. You can also use grids to insert, update, and delete records from a data source. | ||
Equivalent to the HTML input tag, with the addition of input validation. | Creating a basic form in Using forms in ColdFusion | |
Displays a selection box. Equivalent to the HTML select tag, with the addition of input validation. | ||
Creates a Java applet-based control that lets users enter data by moving a slider. Not supported in Flash format forms. | ||
Displays a text input area. Equivalent to the HTML textarea tag, with the addition of input validation. | The cftextarea tag in the CFML Reference | |
Creates a Java applet or Flash hierarchical tree-format control that can include graphical images for the different elements. Can also generate a ColdFusion structure that represents the tree data and attributes. |
<cfform action="preserve.cfm" preservedata="Yes">
<p>Please enter your name:
<cfinput type="Text" name="UserName" required="Yes"><p>
<input type="Submit" name=""> <input type="RESET">
</cfform>