Posted by: दार्जीलिङे-दाई August 20, 2008
Frames in Frameset - HTML
Login in to Rate this Post:     0       ?        
In simple HTML the content of different frames can be changed with the following but if you want to pass value you have to use JavaScript.

Try the following if you have not tried already..



<frameset rows="50, *" border="0">
<frame src="OriginalHTMLfile-to-be-displayed.html" name="Frame1">
<frame src="OriginalHTMLfile-to-be-displayed.html" name="Frame2">
</frameset>




<a href="newHTMLfile.html" target="Frame1">Frame1</a>
<a href="newHTMLfile.html" target="Frame2">Frame2</a>

Read Full Discussion Thread for this article