|
Posted by navin on 06/19/07 14:54
Hi All,
the page i have created contains 3 frames. frame in left contains the
navigation links and i want to update the frame in center with the
content of the link when clicked.
However, whenever i click on the link, the content opens up in both
of
the left and center frame instead of the center frame.
Below html code is what i am using:
<html>
<head>
<title>Index</title>
</head>
<frameset rows="64,*" framespacing="0" border="0" frameborder="0">
<frame name="banner" scrolling="no" noresize
src="top_page.html"
frameborder="0">
<frameset cols="188,*">
<frame name="contents" src="collapse.html"
frameborder="0"
target="main">
<frame name="main" src="centre_page.html"
frameborder="0">
</frameset>
<noframes>
<body>
<p>This page uses frames, but your browser doesn't support
them.</p>
</body>
</noframes>
</frameset>
</html>
Please help.
thanks in advance,
navin
[Back to original message]
|