HTTP 404 - File not found with frames
843836May 10 2004 — edited May 12 2004Hi,
I am using a frameset that has 3 frames. The frameset happened to be my home page. The problem is this frameset comes up with HTTP 404 - File not found in place of all the other three frames. Below is a code snippet from my jsp. What should I do? Urgent help appreciated.
<!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="109,*" cols="*" framespacing="10" frameborder="yes" border="10" bordercolor="#CC0000">
<frame src="logo.jsp" name="topFrame" scrolling="NO" noresize >
<frameset rows="*" cols="161,*" framespacing="10" frameborder="yes" border="10" bordercolor="#CC0000">
<frame src="navBar.jsp" name="leftFrame" scrolling="NO" noresize>
<frame src="home.jsp" name="mainFrame">
</frameset>
</frameset>
<noframes><body>
</body></noframes>
</html>