Dynamic Text Area
<TEXTAREA Wrap=Physical 
   Name="name" 
   height="4" 
   Length="15"><CFOUTPUT>#Query.Value#</CFOUTPUT>
</TEXTAREA>

Creates a text area 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.
LENGTH Required.  The length in columns of the text area.
HEIGHT Required.  The height of the text area.

Example

<TEXTAREA Wrap=Physical
   Name="Description"
   Height="4"
   Size="20"><CFOUTPUT>#GetClient.Description#</CFOUTPUT>
</TEXTAREA>
BuiltByNOF