Tek-Tips is the largest IT community on the Internet today!

Members share and learn making Tek-Tips Forums the best source of peer-reviewed technical information on the Internet!

  • Congratulations Chris Miller on being selected by the Tek-Tips community for having the most helpful posts in the forums last week. Way to Go!

Frames are Misbehaving

Status
Not open for further replies.

JohnBates

MIS
Feb 27, 2000
1,995
US
Hi HTML experts,

I'm not very experienced in using frames, so my problem is probably something I'm doing wrong.

The left-side "column" (Frame1.htm) is 20 percent wide - it displays fine. But the main section (main.htm) gives error "Not Found - The requested object does not exist on this server."

I've checked the spelling - and yes main.htm is the documents name.


Does anyone know what things I should check, to prevent the 'Not Found' problem?

Thanks, John



This is the index.html.... again, Frame1.htm displays OK
<html>
<head>
<title>John Bates</title>
</head>

<frameset cols=&quot;20%,*&quot; framespacing=&quot;0&quot; border=&quot;0&quot; frameborder=&quot;0&quot;>

<frame name=&quot;contents&quot; target=&quot;main&quot; src=&quot;Frame1.htm&quot; scrolling=&quot;auto&quot;>
<frame name=&quot;main&quot; src=&quot;main.htm&quot; scrolling=&quot;auto&quot;>

<noframes>
<body>

<p>This page uses frames, but your browser doesn't support them.</p>

</body>
</noframes>

</frameset>

</html>
 
oops....

main.html is actually the document name - not main.htm


Problem fixed. John
 
Status
Not open for further replies.

Part and Inventory Search

Sponsor

Back
Top