Listing 1

content.asp:
<%@LANGUAGE="VBSCRIPT" CODEPAGE="1252"%>
<html>
<head><title>My Content Page</title></head>
<body>
<!-- #include file="inc_top.asp" -->
My content goes here.
<!-- #include file="inc_bottom.asp" -->
</body>
</html>
inc_top.asp:
<table>
<tr>
<td>
inc_bottom.asp:

</td>
</tr>
</table>

Listing 2

<html>
<head>
<title>My Content Page</title>
</head>
<body>
<table>
<tr>
<td>
My content goes here.
</td>
</tr>
</table>
</body>
</html>

Listing 3

<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.01 Transitional//EN">
<html>
<head>
<title>My Page Title</title>
<!--#include file="metas.asp" -->
<!--#include file="inc_css.asp" -->
<!--#include file="pre_body.asp" -->
</head>
<!--#include file="inc_top.asp" -->
All the page content
<!--#include file="inc_bottom.asp" -->

Listing 4

<html>
<head>
<title>MySite.com - Your destination for stuff</title>
<!-- Start Top Include -->
</head>
<body>
<table id="#tableLayout">
  <tr>
    <td colspan="3">
      <h1>MySite.com - Your destination for stuff</h1>
    </td>
  </tr>
  <tr valign="top">
    <td nowrap class="altcolor">
      <a href="#">Cool Stuff</a><br>
      <a href="#">Alright Stuff</a><br>
      <a href="#">Rockin' Stuff</a><br>
      <a href="#">Fair to middlin' Stuff</a>
    </td>
    <td>
<!-- Stop Top Include -->
<p>This is all the content about how awesome cool stuff is. If you don't have
 stuff, please contact us today so we can sell you lots of stuff that you may or
  may not every use.</p>
     <p>Some lorem ipsume latin shtuff goes here. </p>
<!-- Start Bottom Include -->
    </td>
    <td><h2>Da News</h2>
<p>MySite.com - your destination for stuff, has been featured in numerous
 magazines as "the" destination for your stuff.</p>
    </td>
    <td>
  </tr>
  <tr align="center">
    <td colspan="3" class="fineprint">Copyright © MySite.com,
	 1964-2033</td>
  </tr>
</table>
</body>
</html>
<!-- Stop Bottom Include -->
Next, I'm going to cut everything from <!-- Start Top Include --> to <!--
 Stop Top Include --> and place it in inc_top.asp. inc_top.asp now looks like this:
</head>
<body>
<table id="#tableLayout">
  <tr>
    <td colspan="3">
      <h1>MySite.com - Your destination for stuff</h1>
    </td>
  </tr>
  <tr valign="top">
    <td nowrap class="altcolor">
      <a href="#">Cool Stuff</a><br>
      <a href="#">Alright Stuff</a><br>
      <a href="#">Rockin' Stuff</a><br>
      <a href="#">Fair to middlin' Stuff</a>
    </td>
    <td>

Listing 5

    </td>
    <td><h2>Da News</h2>
<p>MySite.com - your destination for stuff, has been featured in numerous
 magazines as "the" destination for your stuff.</p></td>
    <td>
  </tr>
  <tr align="center">
    <td colspan="3" class="fineprint">Copyright © MySite.com,
	 1964-2033</td>
  </tr>
</table>
</body>
</html>

Listing 6

<html>
<head>
<title>MySite.com - Your destination for stuff</title>
<!--#include file="inc_top.asp"-->
<p>This is all the content about how awesome cool stuff is. If you don't have
 stuff, please contact us today so we can sell you lots of stuff that you may or
  may not every use.</p>
<p>Some lorem ipsume latin shtuff goes here. </p>
<!--#include file="inc_bottom.asp"-->