- Mar 1, 2000
- 30,890
- 5,001
- 126
I have a simple .asp page pulling data from SQL table.
The field value contains carraige returns (if I pull a query in text via SSMS, it displays the carriage returns for that field).
my .asp code is simply:
<td><%Response.Write(rs.fields("revision_desc"))%></td>
which, as you know will NOT display the carriage returns, and show the resultant string value in a single row of text.
What's the proper syntax to get that code to display the carriage returns?
Thanks in advance.
The field value contains carraige returns (if I pull a query in text via SSMS, it displays the carriage returns for that field).
my .asp code is simply:
<td><%Response.Write(rs.fields("revision_desc"))%></td>
which, as you know will NOT display the carriage returns, and show the resultant string value in a single row of text.
What's the proper syntax to get that code to display the carriage returns?
Thanks in advance.