Forum Moderators: open

Message Too Old, No Replies

Code Editor that converts include links to code

         

rubik

8:14 pm on Mar 25, 2005 (gmt 0)

10+ Year Member



I am looking for a text code editor that would: when looking at the non-rendered code, would display the code from the include instead of the include call.

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