Passing URL in query string

2003-01-21 Thread Phillip B
Whats the best way to pass this http://www.asdf.com/index.cfm?x=xy=y and keep everything after the with the passed URL? Phillip B. ~| Archives: http://www.houseoffusion.com/cf_lists/index.cfm?forumid=4 Subscription:

RE: Passing URL in query string

2003-01-21 Thread Tony Weeg
-Original Message- From: Phillip B [mailto:[EMAIL PROTECTED]] Sent: Tuesday, January 21, 2003 4:25 PM To: CF-Talk Subject: Passing URL in query string Whats the best way to pass this http://www.asdf.com/index.cfm?x=xy=y and keep everything after the with the passed URL? Phillip B

Re: Passing URL in query string

2003-01-21 Thread Phillip B
Navtrak, Inc. Mobile workforce monitoring, mapping reporting www.navtrak.net 410.548.2337 -Original Message- From: Phillip B [mailto:[EMAIL PROTECTED]] Sent: Tuesday, January 21, 2003 4:25 PM To: CF-Talk Subject: Passing URL in query string Whats the best way to pass this http

RE: Passing URL in query string

2003-01-21 Thread Jerry Johnson
Design Navtrak, Inc. Mobile workforce monitoring, mapping reporting www.navtrak.net 410.548.2337 -Original Message- From: Phillip B [mailto:[EMAIL PROTECTED]] Sent: Tuesday, January 21, 2003 4:25 PM To: CF-Talk Subject: Passing URL in query string Whats the best way to pass this http

RE: Passing URL in query string

2003-01-21 Thread Mark A. Kruger - CFG
Phil, Have you tried URL Encoding the variable? url=#urlencodedFormat(http://www.asdf.com/index.cfm?x=xy=y)# -mk -Original Message- From: Phillip B [mailto:[EMAIL PROTECTED]] Sent: Tuesday, January 21, 2003 3:40 PM To: CF-Talk Subject: Re: Passing URL in query string I have a link

Re: Passing URL in query string

2003-01-21 Thread Clint Tredway
:40 PM Subject: Re: Passing URL in query string I have a link that has to have another link passed in the query string. This makes the link I click look like this. index.cfm?go=yesurl=http://www.asdf.com/index.cfm?x=xy=y The problem is that when index.cfm gets it, it sees the variables go, url

RE: Passing URL in query string

2003-01-21 Thread Mosh Teitelbaum
/ -Original Message- From: Phillip B [mailto:[EMAIL PROTECTED]] Sent: Tuesday, January 21, 2003 4:25 PM To: CF-Talk Subject: Passing URL in query string Whats the best way to pass this http://www.asdf.com/index.cfm?x=xy=y and keep everything after the with the passed URL? Phillip

Re: Passing URL in query string

2003-01-21 Thread Phillip B
[EMAIL PROTECTED] To: CF-Talk [EMAIL PROTECTED] Sent: Tuesday, January 21, 2003 3:45 PM Subject: Re: Passing URL in query string Have you tried using URLENCODEDFORMAT function to encode the vars and then use the urldecode function to decode it? This will probably get your desired results

Re: Passing URL in query string

2003-01-21 Thread Clint Tredway
PM Subject: Re: Passing URL in query string I've tried the URLEncodedFormat and URLDecode but it still separates them. It shows it correctly encoded in the html but that gets blown to hell once you click the link. This is so freaking simple but I cant see what I am doing wrong. Phillip B

RE: Passing URL in query string

2003-01-21 Thread Mark A. Kruger - CFG
)# -Original Message- From: Phillip B [mailto:[EMAIL PROTECTED]] Sent: Tuesday, January 21, 2003 3:59 PM To: CF-Talk Subject: Re: Passing URL in query string I've tried the URLEncodedFormat and URLDecode but it still separates them. It shows it correctly encoded in the html but that gets blown

Re: Passing URL in query string

2003-01-21 Thread Jerry Johnson
, 2003 3:45 PM Subject: Re: Passing URL in query string Have you tried using URLENCODEDFORMAT function to encode the vars and then use the urldecode function to decode it? This will probably get your desired results. Clint - Original Message - From: Phillip B [EMAIL PROTECTED

Re: Passing URL in query string

2003-01-21 Thread Phillip B
PROTECTED] Sent: Tuesday, January 21, 2003 3:45 PM Subject: Re: Passing URL in query string Have you tried using URLENCODEDFORMAT function to encode the vars and then use the urldecode function to decode it? This will probably get your desired results. Clint - Original Message

Re: Passing URL in query string

2003-01-21 Thread Paul Giesenhagen
PROTECTED] To: CF-Talk [EMAIL PROTECTED] Sent: Tuesday, January 21, 2003 4:27 PM Subject: Re: Passing URL in query string So you could run into problems like: index.cfm?go=yesurl=http://www.asdf.com/index.cfm?x=xy=yurl= In this case, the url variable url would be set to jjj (not to http

Re: Passing URL in query string

2003-01-21 Thread Jerry Johnson
. Dang! Thanks everyone! Phillip B. - Original Message - From: Jerry Johnson [EMAIL PROTECTED] To: CF-Talk [EMAIL PROTECTED] Sent: Tuesday, January 21, 2003 4:13 PM Subject: Re: Passing URL in query string It's really not that simple. You are trying to do something that is very, very

Re: Passing URL in query string

2003-01-21 Thread Rahmin Pavlovic
So you think I should find a better way than what I am trying because its very, very wrong :) I haven't been following, but I know paypal makes you send the returning page as a URL param, and you can attach your own params to that URL. The one I did works fine - looks like:

RE: Passing URL in query string

2003-01-21 Thread Andrew Tyrone
wrap) Just analyze the links for the images on this page. Note, google also encodes the URL. -- Andy -Original Message- From: Phillip B [mailto:[EMAIL PROTECTED]] Sent: Tuesday, January 21, 2003 4:40 PM To: CF-Talk Subject: Re: Passing URL in query string I have a link that has

RE: Passing URL in query string

2003-01-21 Thread Kreig Zimmerman
:40 PM To: CF-Talk Subject: Re: Passing URL in query string I have a link that has to have another link passed in the query string. This makes the link I click look like this. index.cfm?go=yesurl=http://www.asdf.com/index.cfm?x=xy=y The problem is that when index.cfm gets