Forum Moderators: open
Example:
INCLUDE FILE CODE - IncludeFileName.inc
<% Response.Write ("Hi") %>
PAGE THAT CALLED THE INCLUDE
<html>
<head>
</head>
<body>
<!--#include file="IncludeFileName.inc"-->
</body>
</html>
WOULD FOLD THEM TOGETHER INTO:
<html>
<head>
</head>
<body>
<% Response.Write ("Hi") %>
</body>
</html>
I have wandered into debug Hades, and would like to see all the code at once.
-Thanks