HELP: I need to display editable text in a textarea or similar

  • Thread starter Thread starter John
  • Start date Start date
J

John

Hi all,
I finally managed to sort my previous problem, thanks to Thomas.
Now I have another dilemma.

I have been trying to retrieve text from a recordset and display it
within a textarea box so as to edit it.
I have now realised that textarea does not use a 'value' tag, and
therefore the text will not display.

Does anyone have any ideas how this can be achieved with MS Access and
ASP?

TIA.
 
Hi John....

I did a search on.....

editing textarea in asp

in the google groups and got some answers that look like they will help
you......

Best to you......
Tom Gahagan
 
Use the following format, but all on a single line:

<textarea rows="4" name="Description" cols="40">
<%=objRS("Description")%>
</textarea>

--
==============================================
Thomas A. Rowe (Microsoft MVP - FrontPage)
WEBMASTER Resources(tm)

FrontPage Resources, WebCircle, MS KB Quick Links, etc.
==============================================
 
Many thanks Thomas, that solved it.....YIPPEEEE!!
Don't you find it tough being such a genius? :)
 

Ask a Question

Want to reply to this thread or ask your own question?

You'll need to choose a username for the site, which only take a couple of moments. After that, you can post your question and our members will help you out.

Ask a Question

Back
Top