I have an SQL table which has a field of type Text. The data that I store in the field contains line breaks to designate different paragraphs. If I run a SELECT statement using Query Analyzer, I see that the line breaks are preserved.
What I want to be able to do is insert <p></p> tags for each separate paragraph as I read through the field. What is the best way to do this? I am reading in the fields using an ASP.NET web application.
What I want to be able to do is insert <p></p> tags for each separate paragraph as I read through the field. What is the best way to do this? I am reading in the fields using an ASP.NET web application.