[thelist] Outlook on Mac

Joe Crawford jcrawford at avencom.com
Fri Feb 23 12:59:16 CST 2001


Ron White wrote:
> We're sending an href in an email. On a Win machine the email looks correct:
> 
> Click here(this is the link) to work on job over the web.
> 
> On a Mac it looks like Click here
> <http://foo.marathoninnovations.com/foo/bar/foobar.jsp?loginpage=(12345,23,0
>  )&someother value(1223,12,0)

There are certain characters which in a URL are better off being url
encoded:

( should be %28

) should be %29

~ should be %7E

  should be %20

etc. etc.

So your URL should be:

http://foo.marathoninnovations.com/foo/bar/foobar.jsp?loginpage=%2812345,23,0%29&someother%20value%281223,12,0%29

and with the fancy <>'s for formatting:

<http://foo.marathoninnovations.com/foo/bar/foobar.jsp?loginpage=%2812345,23,0%29&someother%20value%281223,12,0%29>

hopefully all mailers should handle that.

<tip type="url encoding tricks">
(maybe an old old one)

One quickie way to find the url encoded value of a character is to
paste:
javascript:alert(escape(')'))
javascript:alert(escape('('))
javascript:alert(escape(' '))
javascript:alert(escape('~'))

etc, etc.

</tip>

	- Joe <aka http://artlung.com>
--
Joe Crawford ||||||||||||||       mailto:jcrawford at avencom.com
||||||||||||||||||||||||             http://www.avencom.com
|||||||||||||||||||||||||||      Avencom: Set Your Sites Higher




More information about the thelist mailing list