removing the "%20" from an URL variable
I am receiving a returned URL that looks something like this:
http://myDomanin.com//gateway.cfm?custom%20first_nam=slam&custom%20last_nam=mally
The problem is that I need to get the first_nam variable to be "slam" and the last_nam variable to be "mally" (using the example above).
Unfortunately, I am presented with the URL structure that gives me custom%20first_nam=slam and custom%20last_nam=mally.
How would I work some CF magic so that I could strip the URL of the "custom%20" ?
Many thanks in advance for you help with this.
