but anyway...
-----Original Message-----
From: Stephen Hait [mailto:[EMAIL PROTECTED]
Sent: Sunday, October 26, 2003 12:36 PM
To: CF-Talk
Subject: Re: textarea problem
> 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]

