Well, roughly...
When you submit the text area to a memo field in Access it DOES store the
breaks, but not as the html code of <br>. If you want to display the text in
another textbox, it should work, but if you want it in a paragraph, use this
line to conver the returns to <br>:
<%=Replace(rs("yourfield"),vbcrlf,"<br>")%>
That should do it.
"ConorS" <webforumsuser (AT) macromedia (DOT) com> wrote
Quote:
Using Dreamweaver, asp VB.
I'm creating a form that goes to a database. When outputting from the
database, what typed into the text area looks nothing like the input. I
|
think it has something to do with the format.
Quote:
How to i make text areas generate html? As in <Br> break lines. etc... |