pinkpunk
30-03-2007, 23:36
<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.01 Frameset//EN" "http://www.w3.org/TR/html4/frameset.dtd">
<html>
<head>
<title>Sito</title>
<meta http-equiv="Content-Type" content="text/html; charset=iso-8859-1">
</head>
<frameset rows="138,76%" framespacing="0" frameborder="no" border="0">
<frameset cols="*" framespacing="0" frameborder="no" border="0">
<frame src="menu.html" name="menù" frameborder="no" scrolling="no" noresize marginheight="0">
</frameset>
<frameset cols="*" framespacing="0" frameborder="no" border="0">
<frame src="news.html" name="Contenuti" frameborder="no" scrolling="auto" noresize marginheight="0">
</frameset>
</frameset>
<noframes><body>
</body></noframes>
</html>
--
utilizzo questo codice html per una semplice pagina con frames, ma il secondo frame, denominato Contenuti (news.html) non riesco a visualizzarlo online.. Notate qualche imprecisione?
---------------
RISOLTO con target="news.html"
<html>
<head>
<title>Sito</title>
<meta http-equiv="Content-Type" content="text/html; charset=iso-8859-1">
</head>
<frameset rows="138,76%" framespacing="0" frameborder="no" border="0">
<frameset cols="*" framespacing="0" frameborder="no" border="0">
<frame src="menu.html" name="menù" frameborder="no" scrolling="no" noresize marginheight="0">
</frameset>
<frameset cols="*" framespacing="0" frameborder="no" border="0">
<frame src="news.html" name="Contenuti" frameborder="no" scrolling="auto" noresize marginheight="0">
</frameset>
</frameset>
<noframes><body>
</body></noframes>
</html>
--
utilizzo questo codice html per una semplice pagina con frames, ma il secondo frame, denominato Contenuti (news.html) non riesco a visualizzarlo online.. Notate qualche imprecisione?
---------------
RISOLTO con target="news.html"