Click to See Complete Forum and Search --> : How to Save HTMLDocument?


NiteStone
February 5th, 2000, 04:24 AM
Hi

How to save HTMLDocument as html or htm file?

NiteStone :)

Lothar Haensler
February 7th, 2000, 01:48 AM
an HTML document is a simple text file.
just save it as any other text file.
open yourfile for output as #hFile
print #hFile, yourHTMLDocumentContentsGoesHere
close hFile