Hi
How to save HTMLDocument as html or htm file?
NiteStone :)
Printable View
Hi
How to save HTMLDocument as html or htm file?
NiteStone :)
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