Tek-Tips is the largest IT community on the Internet today!

Members share and learn making Tek-Tips Forums the best source of peer-reviewed technical information on the Internet!

  • Congratulations Chriss Miller on being selected by the Tek-Tips community for having the most helpful posts in the forums last week. Way to Go!

Frames -> show them always?

Status
Not open for further replies.

Bramvg

IS-IT--Management
Jan 16, 2001
135
BE
Hi,

I would like that my visitors *always* see the frame on my website, my page is devided into 2 frames.
menu.cfm and main.cfm

Now, when someone would go directly goto main.cfm, e.g.
I would like to 'force' to load the menu.cfm as well.

The same for anothor page, e.g.: they would have to be redirected to the index.cfm page where I load my frames, and show the menu.cfm frame, but not the start page, but if possible the magazines.cfm page.

Is this possible?

Bram
 
This is actually a javascript problem.

<script language=&quot;JavaScript1.2&quot;>
<!--

if (window = top) top.location.href = 'yourframesetfile.htm';

//-->
</script>

I'm not sure if that will actually work, but try putting it on the top of all the files you don't want to be able to load outside the frame. 'yourframesetfile.htm' should be set to the filename of the file that sets your frames.
 
Status
Not open for further replies.

Part and Inventory Search

Sponsor

Back
Top