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!

problems with frames

Status
Not open for further replies.

DataSpy

Technical User
Nov 15, 2002
39
0
0
US
Frame opens correctly in firefox but doesn't open correctly in IE. When the link is clicked in IE the frame opens in a seperate browser, when it should open in a frame called "MAIN". My index.php page specifies the frames:

<frameset cols="23%,77%">

<frameset rows="100%" >
<frame frameborder="1" name="SIDEBAR" src="framea.html">
</frame>
</frameset>

<frameset rows="10%,90%">
<frame frameborder="0" name="NAV" src="nav_header.php">
</frame>
<frame frameborder="0" name="MAIN" src="frameb.html">
</frame>
</frameset>

</frameset>

The links are targeted to the frames using:

<BASE TARGET="MAIN">
<a href="feature_add.php"> Add Feature</a>

It works fine in Firefox, but when I click the link in IE it opens in a new browser. Any idea of what I need to do?
 
Not currently, I am early on in the design.
 
Status
Not open for further replies.

Part and Inventory Search

Sponsor

Back
Top