Step 1. You need to create a frameset, i.e. the page that contains all frames. Usually it is a
html page named "index.
html" and its code is something like this:
<
html>
<head>
<title>Page Title</title>
</head>
<frameset rows="15%,*">
<frame name="top" src="index1.
html">
<frame name="bottom" src="index2.
html">
<noframes>
<body>
<p>This page uses frames, but your browser doesn't support them.</p>
</body>
</noframes>
</frameset>
</
html>
Step 2. You need to set the initial pages for the two frames. In the above example they are "index1.
html" and "index2.
html"
Step 3. When you make links in the code of index2.
html (the lower frame) use this format:
<a
target="_self" href="
http://...................................">link text</a>
Links will open in the same frame, while the upper frame will remain unchanged.
Hope this helps...