If hyperlinks to a URL contains spaces, the entire hyperlink is not underlined in an email message.
I've tried using "<" and ">" on both ends of the URL variable, double quotes, single quotes, Server.URLEncode method, and nothing works. Code I've tried is below, plus more. Anyone have an idea how to get the entire URL to be shown as a hyperlink in the email?
If a link is not fully underlined then it is not being treated as a full link. So applying text-decoration just masks the issue, it doesn't solve it.
Can you give as some example data as to what Session("DrivingDirections") contains? One option may be to apply Session("DrivingDirections") to a local variable, then Replace() any spaces with %20 and use the local variable in the msg.
Bookmarks