Forum Moderators: open
Eg
***
response.write "mailto:example@example.com&From=" & request("visitormail") & "Body=" popupnotice & "<br>" sendprompt & "<br>" & "<br> " & cbody ""
***
But my problem is when using <br> tags for signifying new lines, in the mail window
<br>shows up.
In php, a simple way to resolve this problem was to do \n where you wanted a new line:
Eg
***
popupnotice & "\n" sendprompt & "\n" & "\n " & cbody ""
***
What's the alternative to \n in asp?