One way of getting around that would probably be just to type out the entire url of the page you are trying to load. For example :
<frame SRC="http://www.page.com/t
<frame SRC="http://www.page.com/c
Main Topics
Browse All TopicsHi the following code works with IE but not with firefox
<html>
<head>
<title></title>
</head>
<frameset FRAMEBORDER="0" BORDER="0" FRAMESPACING="0" rows="100,*">
<frameset FRAMEBORDER="0" BORDER="0" FRAMESPACING="0" cols="150,*">
<frame SRC="../tlcorner.htm" SCROLLING="NO">
<frame SRC="citibanner.htm" SCROLLING="NO">
</frameset>
<frameset FRAMEBORDER="0" BORDER="0" FRAMESPACING="0" cols="150,*">
<frame SRC="citicontents.htm" NAME="Contents" SCROLLING="YES" target="main">
<frame SRC="citi.htm" NAME="Main">
</frameset>
<noframes>
<body>
</body>
</noframes>
</frameset>
</html>
When I modify it thus, it works with firefox, but not IE
<html>
<head>
<title></title>
</head>
<frameset FRAMEBORDER="0" BORDER="0" FRAMESPACING="0" rows="100,*">
<frameset FRAMEBORDER="0" BORDER="0" FRAMESPACING="0" cols="150,*">
<frame SRC="tlcorner.htm" SCROLLING="NO">
<frame SRC="citi\citibanner.htm" SCROLLING="NO">
</frameset>
<frameset FRAMEBORDER="0" BORDER="0" FRAMESPACING="0" cols="150,*">
<frame SRC="citi\citicontents.htm
<frame SRC="citi\citi.htm" NAME="Main">
</frameset>
<noframes>
<body>
</body>
</noframes>
</frameset>
</html>
the actual file (citiindex.htm) resides in folder \citi off the root folder
how can I make it compatible with IE and Firefox... and everything else while i'm at it
This Question has been solved and asker verified All Experts Exchange premium technology solutions are available to subscription members.
Experts Exchange has been collecting answers to technology questions since 1996…3 million and counting! If you have a question, chances are we already have your answer.
If you can't find the exact answer you're looking for, ask our exclusive community of 50,000 experts. You’ll get a personalized answer from a trusted professional.
Thousands of free tech tips, tricks, how-to’s and tutorials are available in our peer reviewed articles section. See for yourself how smart our experts are, no login required.
Access the answers to your technology questions today.
30-day free trial. Register in 60 seconds.
Members of the expert community talk about why the experience at Experts Exchange is different than what you will find anywhere else.

Try it out and discover for yourself.
30-day free trial. Register in 60 seconds.
Join the community of experts here and help other tech pros by answering question in your area of expertise. You can earn FREE access to all Experts Exchange's premium features and resources.
One way of getting around that would probably be just to type out the entire url of the page you are trying to load. For example :
<frame SRC="http://www.page.com/t
<frame SRC="http://www.page.com/c
you can try this out online
go to my website www.greene.dircon.co.uk
click on Citigroup, you'll see that it works in IE but not Fx
You'll notice that the error message that comes up says "The requested URL /secure\secindex.htm was not found on this server."
The obvious error is that you can't have a path with different slashes in it.
I think the difference lies in that IE can tell that you are trying to access a folder while FireFox thinks that is the literal webaddress. Both the "outer" and "inner" pages on your site work, and this is because you do not have them preceeded by a "\".
Try turning all instances of "\" in your links into "/", and see if that works.
First of all, try not to use frames if possible.
Have you ever tried using XHTML?
It's easy and you'll become a clean coder, plus it will help lots with incompatibilties on browsers.
Check it out: http://www.freewebmasterhe
Also use CSS whenever possible.
Business Accounts
Answer for Membership
by: NatchiketPosted on 2005-10-10 at 06:56:09ID: 15052219
sorry I should mention that the bits that don't work are the SRC values in the frame tags