Click to See Complete Forum and Search --> : saving and retricing textarea


pelegk1
04-28-2006, 01:32 AM
i have a text area that i type in lot of rows
when i save and then retriveiw to watch i see it as 1 big lon line- how can i fix this?
thnaks in advance
peleg

candelbc
04-28-2006, 08:05 AM
If I am understanding the problem, I believe you need to use the replace function to replace any vbCrLF with a "<BR>"


Response.Write Replace(Request.Form("textArea"), vbCrLF, "<BR>")


-Brad