> Hi, I'm sort of a newbie with Cold fusion, so I'm probably doing some
> simple mistake. I can't get my text to show up on a cfquery using
> <textarea> tag. Here is my code:
> <textarea cols=50 rows=10 name="body" wrap="virtual" font="arial" value=
> "#body#"></textarea>

This is probably going to be repeated by 1000 other people, but here goes:

The textarea field is a little different than other input fields in that its
a paired tag, rather than a single tag.  It doesn's support the VALUE
parameter.  Instead, the value goes between the start and end TEXTAREA tags.
Change your code to the following:

<textarea cols=50 rows=10 name="body" wrap="virtual" font="arial">
#body#
</textarea>

Regards,
Seth Petry-Johnson
Argo Enterprise and Associates

------------------------------------------------------------------------------
Archives: http://www.eGroups.com/list/cf-talk
To Unsubscribe visit 
http://www.houseoffusion.com/index.cfm?sidebar=lists&body=lists/cf_talk or send a 
message to [EMAIL PROTECTED] with 'unsubscribe' in the body.

Reply via email to