Using MailMessage with hyperlink content

ryanlcs

Member
Joined
Apr 17, 2008
Messages
12
Programming Experience
Beginner
Hi

I am sending email using MailMessage, in my content, I have a hyperlink with space in between the hyperlink, so when I receive email, I am not able to access through the hyperlink as those data after the space "will not be part of the hyperlink".

Eg: http://www.abc.com?Param=1&Param=2&Param=3 -> 44

It only able to recognize "http://www.abc.com?Param=1&Param=2&Param=3", due to the space, the " -> 44" is not part of the hyperlink.

Pls help.
 
Hypertext links are coded using the anchor tag, that has no problems with spaces. HTML a tag
 
Back
Top