I have an html page that I am using that has a logo on top and I have many other pages that I want to put into the page while I start moving all the HTML code below the <body> tag into the pages.
Here is a sample page:
at the "<td> </td>" line (about 9 lines up) - is there a way to include a total html file (<html> tags and all), just to quick and dirty get the pages up?
Thanks,
Tom.
Here is a sample page:
Code:
<%@ Page Language="VB" ContentType="text/html" ResponseEncoding="iso-8859-1" %>
<html>
<head>
<!-- TemplateBeginEditable name="doctitle" -->
<title>Intranet</title>
<!-- TemplateEndEditable --><meta http-equiv="Content-Type" content="text/html; charset=iso-8859-1">
<!-- TemplateBeginEditable name="head" --><!-- TemplateEndEditable -->
<link href="../contour.css" rel="stylesheet" type="text/css">
</head>
<body>
<table width="100%" height="100%" border="0" cellpadding="0" cellspacing="0" bordercolor="#000099">
<tr height="100">
<td><img src="../images/Contour_logo_intranet.jpg" width="100%" height="100"></td>
</tr>
<tr>
<td valign="top">
<!-- TemplateBeginEditable name="content" -->
<table width="100%" height="100%" border="0" cellspacing="0" cellpadding="0">
<tr>
<td> </td>
</tr>
</table>
<!-- TemplateEndEditable --></td>
</tr>
</table>
</body>
</html>
at the "<td> </td>" line (about 9 lines up) - is there a way to include a total html file (<html> tags and all), just to quick and dirty get the pages up?
Thanks,
Tom.