The following code does not work in Internet Explorer. The page is blank and the source shows the the frames code as below. Netscape 4.x displays the NO FRAMES portion of the page. The page displays fine in Netscape 7.x and Mozilla though.
<html>
<head>
<title>Untitled</title>
</head>
<body>
<frameset columns="780,1">
<noframes>
This is a framed page. Your browser needs to be upgraded to view this properly.
</noframes>
<frame src="test.html">
<frame src="blank.html">
</frameset>
</body>
</html>
When I used this code below, IE displays it fine, but Netscape 4.x pulls up a blank page and the source shows the frames code. Netscape 7.x and Mozilla show it just fine though. The only difference between the two chunks of code is that I removed <BODY> tags. What the hell is going on with this stuff?
<html>
<head>
<title>Untitled</title>
</head>
<frameset columns="780,1">
<frame src="test.html">
<frame src="blank.html">
<noframes>
This is a framed page. Your browser needs to be upgraded to view this properly.
</noframes>
</frameset>
</html>
If anyone can help me out with this, that'd be great. Thanks in advance for any help you can offer.
<html>
<head>
<title>Untitled</title>
</head>
<body>
<frameset columns="780,1">
<noframes>
This is a framed page. Your browser needs to be upgraded to view this properly.
</noframes>
<frame src="test.html">
<frame src="blank.html">
</frameset>
</body>
</html>
When I used this code below, IE displays it fine, but Netscape 4.x pulls up a blank page and the source shows the frames code. Netscape 7.x and Mozilla show it just fine though. The only difference between the two chunks of code is that I removed <BODY> tags. What the hell is going on with this stuff?
<html>
<head>
<title>Untitled</title>
</head>
<frameset columns="780,1">
<frame src="test.html">
<frame src="blank.html">
<noframes>
This is a framed page. Your browser needs to be upgraded to view this properly.
</noframes>
</frameset>
</html>
If anyone can help me out with this, that'd be great. Thanks in advance for any help you can offer.