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 Mike Lewis on being selected by the Tek-Tips community for having the most helpful posts in the forums last week. Way to Go!

Document title does not appear in Frames...why?

Status
Not open for further replies.

danielh68

Technical User
Jul 31, 2001
431
US
Hi,

I building this site at and I'm having a hard time figuring why the document title doesn't display on the page. The frames are composed of two pages: topframe.htm and content.htm. Both have a name in the document tag, yet when I preview it, it displays "Untitled". Does anyone have a suggestion as to what I may be doing wrong? Your input is greatly appreciated.

Thanks,
danH
 
Hi,

Your parent page has no title, that's why.

<html>
<head>
<title>Untitled Document</title>
<meta http-equiv=&quot;Content-Type&quot; content=&quot;text/html; charset=iso-8859-1&quot;>
</head>

<frameset rows=&quot;145,*&quot; cols=&quot;*&quot; framespacing=&quot;0&quot; frameborder=&quot;NO&quot; border=&quot;0&quot;>
<frame src=&quot;topframe.htm&quot; name=&quot;topFrame&quot; scrolling=&quot;NO&quot; noresize >
<frame src=&quot;content.htm&quot; name=&quot;mainFrame&quot;>
</frameset>
<noframes><body>

</body></noframes>
</html>

Give this page a title and it will show on the browser.


:: :: (DRAFT VERSION)
 
Hi Cian,

You're right, I forgot about the index page. Thanks a bunch. --DanH
 
Status
Not open for further replies.

Part and Inventory Search

Sponsor

Back
Top