Hi, I'm trying to get my text output thats in an access db to display properly. What I want is to preserve all the carraige returns, sentence structure. The database perserves it properly it's only when I write it out does it get squashed together.
Ex:
What DB shows:
5 Pieces of equipment:
(5)Micron Clientpro
25468750001,
32173220001,
25468730001,
25468370001,
25467790001,
What ASP produces:
5 Pieces of equipment

5)Micron Clientpro 25468750001, 32173220001, 25468730001,25468370001,25467790001,
I use <%=strComments%> to display the output. I retrieve the data earlier in the code and assign it to a variable for later use. Any help would be appreciated, thanks.
Rob