
09-18-2003, 05:17 AM
|
|
Junior Contributor
|
|
Join Date: Aug 2003
Location: UK
Posts: 260
|
|
|
Hi
I'ts been a while since I've done this so bear with me..
dim file as long
file = freeFile
open MYWEB.HTML for ouput as #FreeFile
recordset.movefirst
do until EOF
write Freefile,,recorset!data
recordset.movenext
loop
This is very simple and may not be quite what you want but its to illustrate a way of doing it
otherwise if its to append an existing web page it may be a
system32 call
Hope it is useful
|
|