PDA

Click to See Complete Forum and Search --> : ASP to static HTML


Jan 9th, 2001, 03:55 PM
Is it possible to save the HTML produced by the ASP engine in a static HTML file???

Kagey
Jan 9th, 2001, 04:52 PM
just open the asp page in a browser from a server, then view the source and save the file as and htm file.

Jan 10th, 2001, 07:03 AM
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.

Ianpbaker
Jan 10th, 2001, 07:11 AM
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

Jan 10th, 2001, 10:52 AM
Thanks lanpbaker appreciate the help!