How do I include a page from another site in FP2003?

G

Guest

We have an intranet and an internet site. I would like to include a page
(this page changes daily) from our internet site on an intranet page. Thanks.
 
J

Jens Peter Karlsen [FP-MVP]

You need to use Server Side Includes (SSI) for this.

Regards Jens Peter Karlsen. Microsoft MVP - Frontpage.
 
T

Thomas A. Rowe

You can't unless you use a frameset.

SSI will only work for pages within the same domain.
FP Includes will only work for pages within the current web (root web or subweb)

--
==============================================
Thomas A. Rowe (Microsoft MVP - FrontPage)
==============================================
If you feel your current issue is a results of installing
a Service Pack or security update, please contact
Microsoft Product Support Services:
http://support.microsoft.com
If the problem can be shown to have been caused by a
security update, then there is usually no charge for the call.
==============================================
 
J

Jon Spivey

Hi Robin,
If you can use asp you can pull in the other page like this
<%
set xmlhttp = CreateObject("MSXML2.ServerXMLHTTP")
xmlhttp.open "GET", "http://www.you.com/page.html", false
xmlhttp.send ""
Response.write xmlhttp.responseText
set xmlhttp = nothing
%>
Without asp you'd need to use an iframe.
 

Ask a Question

Want to reply to this thread or ask your own question?

You'll need to choose a username for the site, which only take a couple of moments. After that, you can post your question and our members will help you out.

Ask a Question

Top