Saving FileSystemObject as UTF
Posted
by bob
on Stack Overflow
See other posts from Stack Overflow
or by bob
Published on 2010-05-25T18:38:37Z
Indexed on
2010/05/25
18:51 UTC
Read the original article
Hit count: 361
how can i save the file in utf-8?
Dim FSO, File
Set FSO = Server.CreateObject("Scripting.FileSystemObject")
Set File = FSO.OpenTextFile(Path,2,true,-1)
File.Write(xml1)
File.Close
Set File = Nothing
Set FSO = Nothing
© Stack Overflow or respective owner