Bonjour,
Cet exemple devrait pouvoir t'aider :
Fichier Default.htm
"""""""""""""""""""
<html>
<head>
<title>Exemple</title>
</head>
<frameset rows="60,*">
<frame name="menu_haut" src="frame_du_haut.htm" marginwidth="0" marginheight="0" noresize scrolling="no" >
<frameset cols="145,*" >
<frame name="menu" src="menu.htm" marginwidth="0" marginheight="0" noresize scrolling="Auto">
<frame name="princ" src="frame_du_bas.htm" marginwidth="5" marginheight="5" scrolling="Auto">
</frameset></frameset>
</html>
Fichier frame_du_bas.htm
""""""""""""""""""""""""
<html>
<head>
<title>Frame du haut</title>
<meta http-equiv="Content-Type" content="text/html; charset=iso-8859-1">
</head>
<script>
function afich_titr2() {
chj=parent.frames[0].location.href
it=chj.indexOf("frame" );
chjl=chj.length
if ((chj.substring(it,chjl)) !="frame_du_haut.htm" ){
parent.frames[0].document.close()
parent.frames[0].location.href="frame_du_haut.htm"}}
</script>
<body bgcolor="#FFFFFF" onload="afich_titr2()">
<p align="center"><font color="#0000A0"><big><big> Frame du bas</big></big></font></p>
</body>
</html>
Fichier frame_du_bas2.htm
"""""""""""""""""""""""""
<html>
<head>
<title>Frame du haut</title>
<meta http-equiv="Content-Type" content="text/html; charset=iso-8859-1">
</head>
<script>
function afich_titr2() {
chj=parent.frames[0].location.href
it=chj.indexOf("frame" );
chjl=chj.length
if ((chj.substring(it,chjl)) !="frame_du_haut2.htm" ){
parent.frames[0].document.close()
parent.frames[0].location.href="frame_du_haut2.htm"}}
</script>
<body bgcolor="#FFFFFF" onload="afich_titr2()">
<p align="center"><font color="#000000"><big><big> Nouvelle frame du bas</big></big></font></p>
<p align="center"><a href="frame_du_bas.htm"><font color="#0000FF"><big>Retour frame
précédente</big></font></a></p>
</body>
</html>
Fichier frame_du_haut.htm
"""""""""""""""""""""""""
<html>
<head>
<title>Frame du haut</title>
<meta http-equiv="Content-Type" content="text/html; charset=iso-8859-1">
</head>
<body>
<p align="center"><big><big>Frame du haut</big></big></p>
</body>
</html>
Fichier frame_du_haut2.htm
""""""""""""""""""""""""""
<html>
<head>
<title>Frame du haut</title>
<meta http-equiv="Content-Type" content="text/html; charset=iso-8859-1">
</head>
<body>
<p align="center"><font color="#FF0000"><big><big> Nouvelle frame du haut</big></big></font></p>
</body>
</html>
Fichier menu.htm
""""""""""""""""
<html>
<head>
<title>Frame du haut</title>
<meta http-equiv="Content-Type" content="text/html; charset=iso-8859-1">
</head>
<body>
<p align="center"><font color="#000000"><big><big> Menu</big></big></font></p>
<p align="center"><a href="frame_du_bas2.htm" target="princ"><big><font color="#0000FF">Cliquez
ici</font></big></a></p>
<p align="center"><a href="default.htm" target="_top"><big><font color="#0000FF">Retour</font></big></a></p>
</body>
</html>