Re: URL query string

2002-01-03 Thread clint
try changing the '=' to a '.' and use gettoken() to get both values. Its just an idea. HTH Clint -- Original Message -- from: Tyler Clendenin [EMAIL PROTECTED] Reply-To: [EMAIL PROTECTED] date: Thu, 3 Jan 2002 16:43:43 -0500 here is my delima. i want

Re: URL query string

2002-01-03 Thread Howie Hamlin
Use the URLEncode function so that the = sign is encoded in the URL. HTH, -- Howie Hamlin - inFusion Project Manager On-Line Data Solutions, Inc. - www.CoolFusion.com - 631-737-4668 x101 inFusion Mail Server (iMS) - The Intelligent Mail Server Vote for iMS as the CFDJ Reader's Choice Awards

RE: URL query string

2002-01-03 Thread Sicular, Alexander
I usually do stuff like that in hidden form fields for two reasons. One, because it gets wacky with escape chars and stuff, not just for cf but js, uri's and other languages. And two because it's a _little_ less hack friendly. In general when passing strings over url's I use urlencodedformat

RE: URL Query String

2000-07-21 Thread David Gassner
If you want to pass a series of values without identifying each value's source, you could send them as a single variable containing a comma-delimited list, then use cfloop to loop through them: cfset list=urlencodedformat("1,2,3,4") cfoutput a href="detailpage.cfm?list=#list#"Clicka /cfoutput