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

Frames problem 1

Status
Not open for further replies.

bodmin

Technical User
Apr 1, 2004
98
GB
I am trying to use this page to display a new page in the full window removing the existing frameset. I have tried using the top command on the pages but they still display in a new window.

The pages use the following code

<br>
<hr>
<br>
<a href="contact.htm" target ="_TOP"><img src="images/contact.gif" height ="50" width ="140" border ="0"></a><br>
<a href ="contact.htm" target ="_TOP"> Contact Us</a><p>
<br>
<br>
<a href = "registerservice.htm" target ="_TOP"><img src="images/register.gif" height ="50" width ="140" border ="0"></a><br>
<a href = "registerservice.htm" target ="_TOP"> Register With Us</a><p>
<br>
<br>
<a href ="tutorialwelcome.htm" target ="_TOP"><img src ="images/begintut.gif" height ="50" width ="140" border ="0"></a><br>
<a href ="tutorialwelcome.htm" target ="_TOP"> Online Tutorial</a><p>
<br>
<br>

This is loaded into the left side frame of the following page.

<base target="_top">
</head>
<frameset cols = "25%,75%" framespacing="0" border="0" frameborder="0">
<!-- frames and their initial pages -->
<frame name = navframe src = nav.htm scrolling="auto" target="_TOP">
<frame name = mainframe src = welcome.htm>
</frameset>
<noframes>
<body>
Your browser does not support frames.
</body>
</noframes>
</html>

any help would be most useful

Cheers
 
If I remember correctly _TOP & _top are different. Try to change your frames page to reflect that & get rid of some of the extra _TOPs that you have.

Also, you might use frame name="mainframe" src="welcome.htm" instead. Are you using FP to create this? You can just right click on the frame & choose frame properties.

__________________________
Corey

 
Status
Not open for further replies.

Part and Inventory Search

Sponsor

Back
Top