I have a form, that I'm attempting to place a textarea box to put datarecords from an access database in for display and update. These datarecords can contain upto 70 bytes of data, each textarea could have up to 40 rows in it. I have a loop but can not get a line break to happen for each row to display on a seperate line, they all flow together in the textarea. below is my code. I have tried the replace statement, also adding the <br>, but with no luck. It appears like this
text line 01text line 02text line 03
and I want it to appear as follows -
text line 01
text line 02
text line 03
----------------
rst.MoveFirst
%>
<textarea rows=25 cols=75 id=textarea1 name=textarea1>
<%
Do Until rst.EOF
%>
<%= rst("text_detail") %>
<%
rst.MoveNext
Loop
%>
</textarea>
Thanks in advance for your help with this....
Thanks TBlack.
text line 01text line 02text line 03
and I want it to appear as follows -
text line 01
text line 02
text line 03
----------------
rst.MoveFirst
%>
<textarea rows=25 cols=75 id=textarea1 name=textarea1>
<%
Do Until rst.EOF
%>
<%= rst("text_detail") %>
<%
rst.MoveNext
Loop
%>
</textarea>
Thanks in advance for your help with this....
Thanks TBlack.