PDA

View Full Version : openening frames with src set?


Badman3k
05-20-2003, 06:39 PM
I have a main page without any frames. On this page i have links to another page called frameset.htm. On this frameset page i have three frames: topFrame, leftFrame, mainFrame.

I want it so that when i click the link on the main page it goes to the framset page and then the mainFrame src is set to a particular page.

if you need any of the coding of any of the pages, i will be willing to post them.

Many thanks in advance

::Badman::

Mr J
05-20-2003, 07:26 PM
The source for the frame should be set in the frameset page


<frameset rows ="20%, *" >
<frame src="page3.htm" name="head">

<frameset cols ="26%, *" >
<frame src="page1.htm" name="navbar">
<frame src="page2.htm" name="main">
</frameset>

</frameset>

Just get the link in your main page to call the frameset page