OpenTextFile and Unicode

S

Simon K

I'm trying to write a .txt file with OpenTextFile method. This is working
alright, but since I'm using some danish characters and use Flash to read
the txt file I need to save the file as UTF-8 or Unicode.
Beneath is my code - how do I save the file as UTF-8 or Unicode?
----
Dim fso, f, filespec
Set fso = CreateObject("Scripting.FileSystemObject")
filespec = Server.Mappath("news.txt")
Set f = fso_OpenTextFile(filespec,2, True)

f.Write txtstring
f.Close
 
M

Martin Honnen

Simon said:
I'm trying to write a .txt file with OpenTextFile method. This is working
alright, but since I'm using some danish characters and use Flash to read
the txt file I need to save the file as UTF-8 or Unicode.
Beneath is my code - how do I save the file as UTF-8 or Unicode?
----
Dim fso, f, filespec
Set fso = CreateObject("Scripting.FileSystemObject")
filespec = Server.Mappath("news.txt")
Set f = fso_OpenTextFile(filespec,2, True)

I think if you do
Set f = fso_OpenTextFile(filespec, 2, True, -1)
then the file is opened as a Unicode file
 

Ask a Question

Want to reply to this thread or ask your own question?

You'll need to choose a username for the site, which only take a couple of moments. After that, you can post your question and our members will help you out.

Ask a Question

Members online

Forum statistics

Threads
473,764
Messages
2,569,567
Members
45,041
Latest member
RomeoFarnh

Latest Threads

Top