I'm faced with the task of find and replacing multiple include files with the include file's content.
Just wondering if I'd be quicker copy / pasting than writing a bit of code to do so, or if there's a tool out there that could do this for me?
Pretty sure its a common need. I'm on Windoze btw. Any suggestions welcome.
Just to clarify a bit..
<body>
<!--#include file="content1.asp" -->
</body>
What I want to achieve is
<body>
<the html contents of content1.asp>
</body>
This is a straightforward dig into content1.asp, put in a variable, and replace <!--#include file="content1.asp" -->
with the variable.