I have this in my page:
        <script language="javascript">
        
top.myframe.location.replace("#request.root_url#/index.cfm?fuseaction=profil
e.profile8");
        </script>

And I put this after just to see where I am:
Abort<cfabort>

It's just hitting the abort. I must be doing something wrong.

Greg

-----Original Message-----
From: S. Isaac Dealey [mailto:[EMAIL PROTECTED]]
Sent: Tuesday, November 19, 2002 4:43 PM
To: CF-Talk
Subject: Re: Frames Craziness.


> <cflocation> does not accept the target attribute. You can do the redirect
> with inline JS like this:

> <script language="javascript">
> parent.location.href="#myurl#"
> </script>

> You could replace parent with  the name of the target frame. Does this
> help?

or top.myframe.location.replace("#myurl#"); which will replace the current
location of that frame in the browser's history stack ( the same as
cflocation ) and is viable all the way back to NS 3 and equivalent version
of IE.

S. Isaac Dealey
Certified Advanced ColdFusion 5 Developer

www.turnkey.to
954-776-0046

~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~|
Archives: http://www.houseoffusion.com/cf_lists/index.cfm?forumid=4
Subscription: 
http://www.houseoffusion.com/cf_lists/index.cfm?method=subscribe&forumid=4
FAQ: http://www.thenetprofits.co.uk/coldfusion/faq
Signup for the Fusion Authority news alert and keep up with the latest news in 
ColdFusion and related topics. http://www.fusionauthority.com/signup.cfm

Reply via email to