> IS there some secret to displaying a form variable in a HTML form -
> textarea box:
>
> I don't get any errors, but nothing shows when I pass the
> description variable to this text area:
>
> <TEXTAREA NAME="description" ROWS=5 COLS=59  VALUE="#description#"
> scroll="yes"></textarea>

The value displayed in the textarea form element is specified
diferently. Try changing it to this:
<TEXTAREA NAME="description" ROWS=5 COLS=59   
scroll="yes">#description#</textarea>

You also need to use <cfoutput></cfoutput> tags of course.

HTH,
Stephen
[Todays Threads] [This Message] [Subscription] [Fast Unsubscribe] [User Settings]

Reply via email to