how to show saved text data in paragraphic way.
-
hi! i have saved a brief history like a paragraphic way in the access database. wen i get the result, i get it with same line breaks and spaces i gave while writing text. now prob is that wen i am trying to show this inforation on a literal control its coming in one line only. how to get the data in the same way i entered while saving.
-
hi! i have saved a brief history like a paragraphic way in the access database. wen i get the result, i get it with same line breaks and spaces i gave while writing text. now prob is that wen i am trying to show this inforation on a literal control its coming in one line only. how to get the data in the same way i entered while saving.
Use the string Replace method to replace all line breaks with an html
tag - in VB you would use something like str.Replace(vbCrLf, "
") Fred -
Use the string Replace method to replace all line breaks with an html
tag - in VB you would use something like str.Replace(vbCrLf, "
") Fred