Forum Moderators: open
What I mean is when the user submits a paragraph and it is stored in the database if there is no <br><br> in the data when it is displayed on the page there is no line breaks.
I want it to automatically read like this:
This is a test and I
need it to work properly.
But if it isn't stored like this:
This is a test and I<br><br>
need it to work properly.
It looks like this:
This is a test and I need it to work properly.
Response.Write Replace(txtMsg, vbCrLf, "<br>")