Is it possible to save the HTML produced by the ASP engine in a static HTML file???
Printable View
Is it possible to save the HTML produced by the ASP engine in a static HTML file???
just open the asp page in a browser from a server, then view the source and save the file as and htm file.
Kagey thanks for the post I need to do this at run time I am trying to produce a database driven information page to cut on to a CD. Execute the asp and have an html page produced then recorded on the next cd cut, iterate through the loop and cut another CD etc.
Hi sashabinkie
yu can do it using the filesystem object, but you need to re-make the whole page into a variable and then output it to a file. if you need to know more about the file-system object check out
http://www.4guysfromrolla.com/webtech/040699-1.shtml
hope this helps
Ian
Thanks lanpbaker appreciate the help!