Dynamic Text Field
<INPUT type="text"
   NAME="name"
   VALUE="<CFOUTPUT>#Query.Value#</CFOUTPUT>"
   SIZE="size"
   MAXLENGTH="maxlength">

Creates a text field with value populated from a query column.

Usage

Use this component on forms for updating data.

Attributes

NAME Required. The name of form field.
QUERY Required. The name of query to display.
VALUE Required.  The name of the query column to display.
SIZE Required.  The size of the form field.
MAXLENGTH Optional. Specifies the maximum length of the field.

Example

<INPUT TYPE="text" NAME="Client_ID" 
   VALUE="<CFOUTPUT>#GetClients.Client_ID#</CFOUTPUT>"
   SIZE="20"
   MAXLENGTH-"45">
BuiltByNOF