can SSI refer to a page on a different site?

S

seeeker

If not, how could one accomplish the task of having a server side
include pull up info from a page on a different site?

Thanks!

I'm using FP2K
 
B

Bill Schroyer

Frame, iframe, java script. Here's how to do it in asp:

<%

geturl("http://www.frontpagewiz.com")

Function getURL(URL)

dim objXML,displayText
'dim post

Set objXML = Server.CreateObject
("MSXML2.ServerXMLHTTP")

objXML.open "GET", URL, False
'objXML.SetRequestHeader "Content-
Type", "application/x-www-form-urlencoded"
'objXML.send(POST)
objXML.send

'displayText = objXML.responSetext


'response.write "<iframe id=mainwindow
src="&URL&" width=360 height=40 " _
' & " marginwidth=0 marginheight=0
hspace=0 vspace=0 frameborder=0 scrolling=no></iframe> "

displayText = objXML.responSetext
Response.Write displayText



Set objXML = Nothing

end function
%>

~Bill Schroyer
[email protected]
http://www.frontpagewiz.com
 
S

seeeker

Thanks so much for your knowledgable reply!

I'm ignorant about this stuff, so let me ask you -- what are the parts
of the asp I have to customize, if any, besides the url in
geturl("http://www.frontpagewiz.com")

To be honest, I don't know how to set up an asp page, so do you have
something on your site to explain it to me?
 
Top