I know Ive done this before but it's been so long.....
Sending a link via email. The link has query stings in it.
Problem is, the last one may be two or more words:
String str = "Test This";
String url = "http://www.isp.com?var=" + str;
When sending it out, the last word, This, is not included in the link, it's there but not part of the url to click on.
Yes, I know you can do this but can't in this case:
"<a href=" + url + ">" + url + "</a>"
Suggestions?
Thanks!
Go to the complete details ...