RE: How ASP2HTML?

I have a little question: how can I run an ASP to produce a HTML page and store it somewhere on server 
 
Well if ASP is all you know how to use,
 
1. Remove all inline HTML and only write to the client using some custom function such as OutString(strOut)
2. Set a parameter switch for this generic function to either write to the response stream using Response.Write OR call up a Scripting.FilsystemObject interface and writing to a .html file in the filesystem.
 
If you dont want to modify your ASP page, install libwww and use the w3c command line utility to read pages from localhost. You can execute command line programs from withing ASP, learn most ASP things from www.15seconds.com <http://www.15seconds.com>  as usual.
 
The ideal would be to implement a COM interface with the methods of w3c so you can use it easily from ASP pages. Unfortunately this is not the easiest thing to achieve.
 
Linus Walleij

Received on Friday, 26 November 1999 08:44:26 UTC