I don't think that can be done. Code files are interpreted on the local server, so the display would be blank. Not only that; there would definitely be some security issues involved with that.
' Create an xmlhttp object:
Set xml = Server.CreateOb ject("Microsoft .XMLHTTP")
' Or, for version 3.0 of XMLHTTP, use:
' Set xml = Server.CreateOb ject("MSXML2.Se rverXMLHTTP")
' Opens the connection to the remote server.
xml.Open "GET", "http://pathToIncludeOn Differentserver ", False
' Actually Sends the request and returns the data:
xml.Send
'Display the HTML
Response.Write xml.responseTex t
Comment