capture url variable?

2008-09-16 Thread John P
Hi, I need to capture a url variable then add it to a redirect so my application which is changing servers will still work. Not sure where to start. Thanks, John ~| Adobe® ColdFusion® 8 software 8 is the most important and

Re: capture url variable?

2008-09-16 Thread Shannon Peevey
Here is a link to a tutorial: http://www.peachpit.com/articles/article.aspx?p=30497seqNum=9 Here is my take on it with a meta-refresh: meta http-equiv=refresh content=0; url=http://localhost/ cfoutput?#URL.myvar#/cfoutput But, it is pretty much 5pm, so I wouldn't trust it :) speeves On Tue,

Re: capture url variable?

2008-09-16 Thread Alan Rother
K... Could you give us a little more info? What url variable are you looking to capture and what do you want to do with it in the re-direct? Are you looking to simply take whatever is in the URL string and pass it off to another server like this:

Re: capture url variable?

2008-09-16 Thread Charlie Griefer
cgi.query_string cflocation URL=somewhere_else?#cgi.query_string# addtoken=no / On Tue, Sep 16, 2008 at 3:00 PM, John P [EMAIL PROTECTED] wrote: Hi, I need to capture a url variable then add it to a redirect so my application which is changing servers will still work. Not sure where to

Re: capture url variable?

2008-09-16 Thread John P
Thank you all, that's exactly what I wanted to do. cgi.query_string cflocation URL=somewhere_else?#cgi.query_string# addtoken=no / ~| Adobe® ColdFusion® 8 software 8 is the most important and dramatic release to date