Hi Tuan Maybe something like this would help,
<cfset ourString = "Src=blahblah&storyID=1234&Yahoo=hello"> <cfloop list=#ourString# index="i" delimiters="&"> <cfset ourString2 = #i#> <cfoutput>#i#</cfoutput></br> <cfloop list=#ourString2# index="i2" delimiters="="> <cfoutput>#i2#</cfoutput></br> </cfloop> <hr> </br> </cfloop> This is only rough but im sure you get the jist, obviously you would need to pretty it up and the var set would be your query string instead, i mean there are numerous paths you could take, this was the route I initially thought of. Hope it helps Jose On 5/5/06, Ian Skinner <[EMAIL PROTECTED]> wrote: > > My page would actually have this as the link > http://someurlhere.com/disclaimer.cfm?destination=http://go.reuters.com/newsArticle.jhtml?type=healthNews&storyID=12037965&src=eDialog/GetContent > > The suspect the trouble is the second '?' character. It should not be > allowed. The simplest solution, but untried, would be to urlencode() your > destination value so that these special characters are escaped. You can > then urlDecode() the value in your redirection page to get the folks to > where they are supposed to go. > > > -------------- > Ian Skinner > Web Programmer > BloodSource > www.BloodSource.org > Sacramento, CA > > --------- > | 1 | | > --------- Binary Soduko > | | | > --------- > > "C code. C code run. Run code run. Please!" > - Cynthia Dunning > > Confidentiality Notice: This message including any > attachments is for the sole use of the intended > recipient(s) and may contain confidential and privileged > information. Any unauthorized review, use, disclosure or > distribution is prohibited. If you are not the > intended recipient, please contact the sender and > delete any copies of this message. > > > > > ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~| Message: http://www.houseoffusion.com/lists.cfm/link=i:4:239687 Archives: http://www.houseoffusion.com/cf_lists/threads.cfm/4 Subscription: http://www.houseoffusion.com/lists.cfm/link=s:4 Unsubscribe: http://www.houseoffusion.com/cf_lists/unsubscribe.cfm?user=89.70.4 Donations & Support: http://www.houseoffusion.com/tiny.cfm/54

