I am trying to use SSI for the second time, the first time was with ASP and worked fine, this time I am only using HTML (well XHTML to be exact).
I have built my table structure, for the main page and 2 pages called
title.html and menu.html that contain infomation for every page.
When I include these pages in Dreamweaver it works purfectly, however upload to my Intranet and the included files do not display.
Here is my code so far and I can not workout what is wrong whit it
<head>
<meta http-equiv="Content-Type" content="text/html; charset=iso-8859-1" />
<title>Untitled Document</title>
</head>
<body>
<table width="100%" border="1">
<tr>
<td><!-- #include file="title.html" --></td>
</tr>
<tr>
<td><table width="100%" border="1">
<tr>
<td width="25%"><!-- #include file="menu.html" --></td>
<td width="75%" valign="top">Test</td>
</tr>
</table></td>
</tr>
</table>
</body>
</html>
|
Edited by pjb007 - 16 May 2005 at 6:39am