Does your server support ASP, PHP or JSP?, what is your server?
If not, you could settle for some tacky, but functional javascript..
Code:
<HTML>
<HEAD>
<SCRIPT language='JavaScript'>
function include(url) // must be a fully qualified URL, I don't know why
{
if ( document.all )
{
var xml = new ActiveXObject("Microsoft.XMLHTTP");
xml.Open( "GET", url, false );
xml.Send()
document.writeln(xml.responseText);
}
else // Netscape code from http://www.experts-exchange.com/java....20290896.html
{
if ((location.host=='' && url.indexOf(location.protocol)==-1) || url.indexOf(location.host)==-1)
{
netscape.security.PrivilegeManager.enablePrivilege("UniversalConnect");
}
var dest = new java.net.URL(url);
var dis = new java.io.DataInputStream(dest.openStream());
var res = "";
while ((line = dis.readLine()) != null)
{
res += line + java.lang.System.getProperty("line.separator");
}
dis.close();
document.writeln(res);
return res;
}
}
</script>
</head>
<BODY>
<BR><B>See the included file below:</B><BR>
<p>
<TABLE border="1">
<TR>
<TD>
<SCRIPT language='JavaScript'>
// must be a fully qualified URL -- can be any type of file (html,jsp,asp,etc)
include("http://www.yourserver.com/yourpage.html");
</SCRIPT>
</TD>
</TR>
</TABLE>
</body>
</html>
^^ Code stolen from experts exchange @
http://www.experts-exchange.com/Web/..._21142057.html