Have an annoying asp issue here. I basically have a table with a few fields and a memo field for some large text, am using a Access db.
If i try to display this memo field in a text area (i have an edit record page), i get nothing at all. If i print this directly to a page it works fine. Other fields are displaying fine in input fields.
I'm using the following (have tried setting the below value to a variable and still get nothing). Setting the cols/rows of the textarea to a higher value doesn't work either.
If i try to display this memo field in a text area (i have an edit record page), i get nothing at all. If i print this directly to a page it works fine. Other fields are displaying fine in input fields.
I'm using the following (have tried setting the below value to a variable and still get nothing). Setting the cols/rows of the textarea to a higher value doesn't work either.
Code:
<textarea cols="50" rows="10" name="newsBody" value="<%=objRS.Fields("newsBody")%>" ></textarea>
Last edited: