Hey!
Here is the problem that I have been struggling with for some time and stil have not figure it out. Is someone can help me out, it would be terriffic!
I have an html page like this:
<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.01 Transitional//EN"
"http://www.w3.org/TR/html4/loose.dtd">
<html>
<head>
<title>Welcome.</title>
<meta http-equiv="Content-Type" content="text/html; charset=iso-8859-1">
</head>
<frameset frameBorder="0" rows="123,*">
<frame src="header.xml" name="top_frame" marginwidth="15">
<frameset cols="21%,79%">
<frame SRC="panel.xml" name="left_frame" scrolling="no">
<frame SRC="dashboard.xml" name="right_frame">
</frameset>
</frameset><noframes></noframes>
</html>
header.xml is interpreted by header.xsl. Header.xsl has 3 frames:
<frameset frameBorder="0" rows="123,*">
<frameset cols="15%,70%,15%">
<frame noresize SRC="http://www.altavista.com" name="left_frame" scrolling="no"></frame>
<frame SRC="http://www.yahoo.com" name="right_frame" scrolling="no"></frame>
<frame SRC="http://www.google.com" name="right_frame" scrolling="no"></frame>
</frameset>
</frameset>
When I load my html page I can't see the top frame? Why? Thanks!




Bookmarks