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

Netscape Frames

Status
Not open for further replies.

hallm

Programmer
Jun 11, 2000
159
US
I built an index page in Adobe Go-Live that does nothing more than open a page from another server in a frame.&nbsp;&nbsp;It works perfect in IE4-5 browsers but can't be seen in Netscape.&nbsp;&nbsp;Here is the code, what am I doing wrong?<br><br>&lt;html&gt;<br><br> &lt;head&gt;<br> &lt;meta http-equiv=&quot;content-type&quot; content=&quot;text/html;charset=iso-8859-1&quot;&gt;<br> &lt;title&gt;The Sabine Independent&lt;/title&gt;<br> &lt;/head&gt;<br><br> &lt;frameset cols=&quot;*&quot;&gt;<br> &lt;frame src=&quot;<A HREF=" TARGET="_new"> name=&quot;No Name&quot; noresize&gt;<br> &lt;/frameset&gt;<br> &lt;noframes&gt;<br><br> &lt;body&gt;<br> &lt;/body&gt;<br><br> &lt;/noframes&gt;<br>&lt;/html&gt;<br>
 
Try:<br><br>&lt;html&gt;<br><br>&lt;head&gt;<br>&lt;meta http-equiv=&quot;content-type&quot; content=&quot;text/html;charset=iso-8859-1&quot;&gt;<br>&lt;title&gt;The Sabine Independent&lt;/title&gt;<br>&lt;/head&gt;<br><br>&lt;frameset rows=&quot;0,*&quot; border=&quot;0&quot;&gt;<br>&lt;frame src=&quot;blank.htm&quot; name=&quot;blank&quot; scrolling=&quot;no&quot;&gt;<br>&lt;frame src=&quot;test1.htm&quot; name=&quot;No Name&quot; noresize&gt;<br>&lt;/frameset&gt;<br>&lt;noframes&gt;<br><br>&lt;body&gt;<br>&lt;/body&gt;<br><br>&lt;/noframes&gt;<br>&lt;/html&gt;<br><br>Where blank.htm is a blank document.<br><br>HTH,<br><br>Kevin
 
I get a little edgy when people say that all they're doing is loading pages from other domains. That's masking another webpage as your own, possibly.<br><br>I've seen scams where people say they are a webmall associated with all these major corporations and all they do is have a frames document with that major corporation's webstore inside, so you might be able to see why I get a little edgy.<br><br>Mind if I ask why your page has nothing else but some other domain's webpage? <p>Liam Morley<br><a href=mailto:lmorley@wpi.edu>lmorley@wpi.edu</a><br><a href=] :: imotic :: website :: [</a><br>"light the deep, and bring silence to the world.<br>
light the world, and bring depth to the silence.
 
No I have asp pages for my database content.&nbsp;&nbsp;But all of my other content is on my unix server.&nbsp;&nbsp;I merely wanted my asp home page to open up from a index page located on my unix server.&nbsp;&nbsp;Also, I have a couple of nt servers available and I can easily change to a different server if the main one goes down.&nbsp;&nbsp;(I had to do this the other day, the unix server has never had any problems).&nbsp;&nbsp;If you want to see my page (to make sure I'm not stealing content) it's at <A HREF=" TARGET="_new">
 
Status
Not open for further replies.

Part and Inventory Search

Sponsor

Back
Top