File Form Field
<INPUT Type="File"
   Size="size">

Creates a file form field.  Used in conjunction with CFFile action equals upload.

Usage

File Form Fields are used for allowing users to select files on their local hard drives for uploading to the server.
To allow files to be uploaded, the form containing the field must have its Encoding type set to multparti/form-data.

Attributes

NAME Required. The name of the file field.
SIZE Required. Size of the file field.

Example

<INPUT Type="File" 
   Size="20"">
BuiltByNOF