ciao
allora, per poter fare la struttura di frame che chiedi, hai bisogno di 4 file htm che corrispondono 3 alle rispettiva parti di ognuna, ed una che è la pagina principale che le contiene tutte e 3.
il codice html per l'inserimento della pagina principale è
codice:
<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.01 Frameset//EN" "http://www.w3.org/TR/html4/frameset.dtd">
<html>
<head>
<title>Untitled Document</title>
<meta http-equiv="Content-Type" content="text/html; charset=iso-8859-1">
</head>
<frameset rows="80,*" frameborder="NO" border="0" framespacing="0">
<frame src="topframe.htm" name="topFrame" scrolling="NO" noresize >
<frameset rows="*" cols="129,*" framespacing="0" frameborder="NO" border="0">
<frame src="leftFrame.htm" name="leftFrame" scrolling="NO" noresize>
<frame src="centralFrame.htm" name="mainFrame">
</frameset>
</frameset>
<noframes><body>
</body></noframes>
</html>
I 3 file htm (in questo caso) devono trovarsi nella stessa directory della pagina htm principale.
Spero di essermi spiegato bene.
ciao