Have you tried setting the URL to a variable and outputting it to the screen
to ensure that it is correct?  I have had issues with redirects and Mac
browser (don't know if that's the situation), but try this to first see what
your URL looks like.

Dim theURL

theURL = "http://www.somesite.com/d3/redirect.cfm";
theURL = theURL & "?acctID=" & Server.URLEncode(session("acct_id")) 
theURL = theURL & "&userid=" & Server.URLEncode(session("user_id"))
theURL = theURL & "&user=" & Server.URLEncode(rs("id")))

reponse.write theURL


--
Scott Van Vliet
Senior Technical Analyst
Eclipse Advertising, Inc.

T: 818.238.9388 x 242
F: 818.238.9193  2255 N. Ontario
Suite 170
Burbank, CA 92504

[EMAIL PROTECTED]
http://www.eclipseadvertising.com

 

-----Original Message-----
From: Cami Lawson [mailto:[EMAIL PROTECTED]] 
Sent: Thursday, August 08, 2002 2:27 PM
To: CF-Talk
Subject: RE: Redirect from ASP to CF

We have verified that more than half of the clients are not going through a
proxy server.

-----Original Message-----
From: [EMAIL PROTECTED] [mailto:[EMAIL PROTECTED]]
Sent: Thursday, August 08, 2002 4:26 PM
To: CF-Talk
Subject: Re: Redirect from ASP to CF


Hmm.  Do redirects from ASP to ASP pages work properly as well?

The dialup dudes could be going through a proxy.  Client side redirects
sometimes fail because of this.

----- Original Message -----
From: Cami Lawson <[EMAIL PROTECTED]>
Date: Thursday, August 8, 2002 2:54 pm
Subject: Redirect from ASP to CF

> I have an ASP application that passes information to a CF
> application using
> the following:
>
>
> response.redirect("http://www.somesite.com/d3/redirect.cfm?acctID="; &
> Server.URLEncode(session("acct_id")) & "&userid=" &
> Server.URLEncode(session("user_id")) & "&user=" &
> Server.URLEncode(rs("id")))
>
> On dialup machines the values are lost but with cable it works
> fine.  Any
> ideas what is going on?  It stays on the same box.  Using 3
> servers with
> switching configured for .com and .net sites.
>
> TIA
> Cami
>
>


______________________________________________________________________
Get the mailserver that powers this list at http://www.coolfusion.com
FAQ: http://www.thenetprofits.co.uk/coldfusion/faq
Archives: http://www.mail-archive.com/[email protected]/
Unsubscribe: http://www.houseoffusion.com/index.cfm?sidebar=lists

Reply via email to