devxlogo

Present Data From TEXT Field With Line Breaks

Present Data From TEXT Field With Line Breaks

Question:

I have data (text + CR + LF) stored in SQL Server 6.5 as a TEXT data type. When I want to display the data on an ASP page, the text loses its format. If I use TEXT INPUT on my ASP, it works fine but I need to scroll up and down to see the data, which is okay, but when I print, not all the data gets printed.

Do you have a workaround for this problem? I am trying to reduce the maintenance of one of our sites, which has hundreds of similar HTML pages that could be generated by one ASP page.

Answer:

The data is being presented correctly within your ASP/HTML page. If you choose to View Source, you will see that all your line breaks CR+LFs are being retained. However, one of the rules of HTML rendering is that it ignores extra white space. So your line breaks are being ignored. Therefore, you are losing the format.

To fix this problem, before you write the data out to the browser (using a Response.write), replace all occurrences of the CR+LF with the HTML equivalent,
. Assuming strText contains the value you want to write to the browser, use the code:

Response.write Replace(strText, vbCrLf, "
")

The vbCrLf is a built-in constant for the CR+LF characters.

devxblackblue

About Our Editorial Process

At DevX, we’re dedicated to tech entrepreneurship. Our team closely follows industry shifts, new products, AI breakthroughs, technology trends, and funding announcements. Articles undergo thorough editing to ensure accuracy and clarity, reflecting DevX’s style and supporting entrepreneurs in the tech sphere.

See our full editorial policy.

About Our Journalist