I'm trying to modify a variable that will hold a mail message that I can send as the body in an html mailto tag, but I don't know how to add returns in it.
i.e.
<%
Dim Mailmessage
Mailmessage = "This is line one" &_
"This is line two" & _
"This is line three"
But it comes out as
This is line oneThis is line twoThis is linethree
How do I add returns to it and add more formatting?
BTW, I tried using the objMail code, but my crappy ISP has "issues" with it (mainly it doesn't work off their servers for some reason, but other asp code will...sheesh)
Thanks,
J
i.e.
<%
Dim Mailmessage
Mailmessage = "This is line one" &_
"This is line two" & _
"This is line three"
But it comes out as
This is line oneThis is line twoThis is linethree
How do I add returns to it and add more formatting?
BTW, I tried using the objMail code, but my crappy ISP has "issues" with it (mainly it doesn't work off their servers for some reason, but other asp code will...sheesh)
Thanks,
J