Page 1 of 1
What's wrong with my FRAMESET?
Posted: Tue Jun 01, 2004 5:46 am
by mjseaden
Code: Select all
</body>
<frameset rows="50,*" border=0>
<frame name="navigate" src="http://www.domain1.com/linkrd.html" scrolling = "no" marginheight=1 noresize style="border-bottom: 2px solid #333366;">
<frame name="partner" src="http://www.domain2.com/mainpage.html" marginheight=1>
</frameset>
<noframes>
The link that you are following will take you to partner site. To continue click
<A HREF="http://www.domain2.com/mainpage.html">here</A>.
</noframes>
</html>
I have tried this code with both </body> before and after <frameset>, however in both cases I just get a blank screen. Both domains (on my actual code) point to valid links. Can anyone tell me why this is coming up blank?
Many thanks
Mark
Posted: Tue Jun 01, 2004 6:15 am
by Grim...
Nothing, as far as I can see.
Posted: Tue Jun 01, 2004 6:29 am
by mjseaden
But it still turns up blank!

Posted: Tue Jun 01, 2004 9:03 am
by evanz
I think you should remove "<body>" completely from the code.
Posted: Tue Jun 01, 2004 9:13 am
by Weirdan
you can't have <body> in the same document where your <frameset> resides.
Posted: Tue Jun 01, 2004 9:14 am
by mjseaden
Thanks!