Incorporating HTML form tags
CFFORM allows you to incorporate standard HTML in two ways:
- You can add standard FORM tag attributes and their values to the CFFORM tag. These attributes and values are passed directly through ColdFusion to the browser in creating a form. For example, you can use FORM tag attributes like TARGET to enhance your CFFORM features.
- HTML tags that can ordinarily be placed within an HTML FORM tag can also be placed between <CFFORM> and </CFFORM> tags.
For example, you use a standard HTML INPUT tag to create a submit button in a CFFORM:
<CFFORM
...
<INPUT TYPE="Submit" VALUE=" Update... ">
...
</CFFORM>
AllaireDoc@allaire.com
Copyright © 1998, Allaire Corporation. All rights reserved.