[cfaussie] Re: Passing the '' symbol in a URL.

2007-10-04 Thread Greg Misdom
Hi Travis, %26 replaces in a url. so your url should read : ?Category=Tables%26ChairsCategory2=Leather you should probably have a look at the URLEncodedFormat function, that might help somewhat. regards mizdog! On 10/5/07, TJS [EMAIL PROTECTED] wrote: Hi, I was wondering whether

[cfaussie] Re: Passing the '' symbol in a URL.

2007-10-04 Thread Andrew Scott
You need to URLEncode the string or place quotes around the string, preferably the URLEncode is the best choice. Andrew Scott Senior Coldfusion Developer Aegeon Pty. Ltd. www.aegeon.com.au Phone: +613  8676 4223 Mobile: 0404 998 273 -Original Message- From: cfaussie@googlegroups.com

[cfaussie] Re: Passing the '' symbol in a URL.

2007-10-04 Thread Zac Spitzer
in javascript you can use the escape() function for the same effect. xmlformat() htmleditformat() jsstringformat() should be used on all user provided data written back to the browser, they prevent errors from special characters and prevent hacking, they are like the CFQUERYPARAM for the