I'm working on a asp that will allow you to edit a record from the database. When my memo fields from the database are put into the asp it only shows the last line of the item. For example I have a story with about eleven lines of text. When I use the following to insert it as the default value of a form it just shows the last line of the text.<br><br>set story = db.execute("SELECT * FROM news WHERE NewsID="&request("strID")<br>longstory = story("long"<br><br><textarea name="long" cols="67" rows="5" value="<%=longstory%>"></textarea><br><br>What am I doing wrong? Do I have to use a special format function just to insert my text into a form box.