I am trying to build a url to access ms exchange, and some of the folder have spaces. I want the string
"BIS QA EDM Calendar"
to become
"BIS%20QA%20EDM%20Calendar"
I see Server.URLEncode(), but that convert spaces to a plus sign, not %20. Java has a nice URLEncoder class that works great. I suppose I could do string.replace to replace spaces with %20, but that leaves open other characters that need encoding. Thanks
Tim
"BIS QA EDM Calendar"
to become
"BIS%20QA%20EDM%20Calendar"
I see Server.URLEncode(), but that convert spaces to a plus sign, not %20. Java has a nice URLEncoder class that works great. I suppose I could do string.replace to replace spaces with %20, but that leaves open other characters that need encoding. Thanks
Tim