Extract substring from cgi.http_referer string

2002-08-13 Thread FlashGuy
Hi, I need to extract d%3A%5Ctemp%5Ctestdir000\ and decode the line so it appears as d:\temp\testdir000\ I'm not sure of the correct syntax? http://127.0.0.1/test/index.cfm?dir=d%3A%5Ctemp%5Ctestdir000\ __ This list and all

RE: Extract substring from cgi.http_referer string

2002-08-13 Thread Philip Arnold - ASP
I need to extract d%3A%5Ctemp%5Ctestdir000\ and decode the line so it appears as d:\temp\testdir000\ I'm not sure of the correct syntax? http://127.0.0.1/test/index.cfm?dir=d%3A%5Ctemp%5Ctestdir000\ Look up URLdecode(), it does exactly that - unless you're running CF4.5, then there isn't

RE: Extract substring from cgi.http_referer string

2002-08-13 Thread FlashGuy
Cool! Thanks On Tue, 13 Aug 2002 14:44:45 +0100, Philip Arnold - ASP wrote: I need to extract d%3A%5Ctemp%5Ctestdir000\ and decode the line so it appears as d:\temp\testdir000\ I'm not sure of the correct syntax? http://127.0.0.1/test/index.cfm?dir=d%3A%5Ctemp%5Ctestdir000\ Look