E' chiaro che non troverai mai uno script online che fa esattamente quello che devi fare tu e nello stesso modo, e magari ha lo stesso identico DB e lo stesso layout....
E' da adattare...
La parte che interessa a te è l'ultima:
codice:
path = "c:\temp\test.txt"
ForReading = 1, ForWriting = 2, ForAppending = 3
' open the file
set file = fso.opentextfile(path, ForAppending, TRUE)
' write the info to the file
file.write(strName) & vbcrlf
file.write(strHomePage) & vbcrlf
file.write(strEmail) & vbcrlf
' close and clean up
file.close
set file = nothing
set fso = nothing
Immagino che ciclare e leggere da DB tu lo sappia fare da solo, quindi ti basta mettere assieme le due cose.