I've found another problem in RTE 3
Evrebody know that there is ability to save files directly from rte
but this function does not work, if there are characters from 2 codepages, for example: English & Russian
The reason is a FSO using.
I've wroot same function using ADO.Sream method:
Function Write2file(Filename, Content)
Dim objStream
Set objStream = Server.CreateObject("ADODB.Stream")
objStream.Open
objStream.Charset = "windows-1251"
objStream.WriteText Content
Filename = Server.MapPath(Filename)
objStream.SaveToFile Filename, 2
objStream.Close
Set objStream = Nothing 'Clean up...
End Function
Stupid FSO can't convert codepages, exept UTF, but utf is not suitable in eache case
Previously I posted that open files funcition doesn't worked, the reason was Outpost Firewall code blocking, and I can't find a way to reconfigure this application
Sau bolyndar! (Kazakh)