Re: Adding a target to a CFLOCATION URL?

2002-10-09 Thread cf-talk
Why not use JavaScript and either open a new window (or in your case) replace the location with your new URL? I personally don't use CFLOCATION unless I have to. Mainly due to issues with CFLOCATION and cookies, etc. -Novak - Original Message - From: Russ [EMAIL PROTECTED] To: CF-Talk

RE: Adding a target to a CFLOCATION URL?

2002-10-09 Thread Mosh Teitelbaum
The TARGET attribute needs to be used on the client side (in an A HREF or the FORM, etc.). It won't work from the server side. -- Mosh Teitelbaum evoch, LLC Tel: (301) 625-9191 Fax: (301) 933-3651 Email: [EMAIL PROTECTED] WWW: http://www.evoch.com/ -Original Message- From: Russ

Re: Adding a target to a CFLOCATION URL?

2002-10-09 Thread Paul Giesenhagen
Try this: meta http-equiv=Refresh content=.1;URL=http://whatever you want here Paul Giesenhagen QuillDesign - Original Message - From: Russ [EMAIL PROTECTED] To: CF-Talk [EMAIL PROTECTED] Sent: Wednesday, October 09, 2002 2:28 PM Subject: Adding a target to a CFLOCATION URL? Hi

RE: Adding a target to a CFLOCATION URL?

2002-10-09 Thread Shawn Grover
if you are in an IFrame then you probably need to output javascript to set the window.parent.location to the desired location. CFLocation changes the current page - inside an IFrame, then only the IFrame would go the the new location. HTH. Shawn -Original Message- From: Russ

Re: Adding a target to a CFLOCATION URL?

2002-10-09 Thread Gyrus
- Original Message - From: Russ [EMAIL PROTECTED] Everytime I attempt to add a target=whatever to a CFLOCATION URL, I get an error, but my form is in an iFrame and I need to redirect into the _top or _parent. You're forgetting that CFLOCATION is a

Re: Adding a target to a CFLOCATION URL?

2002-10-09 Thread Jochem van Dieten
Russ wrote: Hi All... Everytime I attempt to add a target=whatever to a CFLOCATION URL, I get an error, but my form is in an iFrame and I need to redirect into the _top or _parent. Is this at all possible? No. cflocation is server side, targets are client side. Use javascript. Jochem

RE: Adding a target to a CFLOCATION URL?

2002-10-09 Thread Rob Rohan
type-o I had to leave it) -Original Message- From: [EMAIL PROTECTED] [mailto:[EMAIL PROTECTED]] Sent: Wednesday, October 09, 2002 1:36 PM To: CF-Talk Subject: Re: Adding a target to a CFLOCATION URL? Why not use JavaScript and either open a new window (or in your case) replace