PDA

View Full Version : Linking Pages into one Site to another


Joe Hike
03-27-2001, 03:07 AM
Is there any possibility that I can insert any page from another site into my site.
I want to disply a Tariff of a company in my site, but the Tariff changes everymonth. I want to link the tariff page in my site so no update from my side anytime.

Detlef
03-27-2001, 04:40 PM
You can do that using a frame. Only problem is, will it
look good?
example:

<frameset cols="40%,60%">
<frame src="myside1.htm" name="leftwindow">
<frameset rows="20%,80%">
<frame src="myside2.htm" name="mainwindow">
<frame src="http:\\www.company.htm" name="lowerwindow">
</frameset>
</frameset>

This one generates a window with 3 frames.