Forum Moderators: open
the general syntax for frameset is as follows...
<frameset cols="25%,75%">
<frame src="frame_a.html">
<frame src="frame_b.html">
</frameset>
I don't know if this helps any.
//////links.html//////
<html>
<body>
<a href="http://www.google.com target="frame2">Google</a><br>
<a href="http://www.yahoo.com" target="frame2">Yahoo</a><bR>
</body>
</html>
//////index.html//////
<html>
<body>
<frameset cols="120,*">
<frame src="links.html">
<frame src="main_page.html" name="frame2">
</frameset>
</body>
</html>
this should work