Win CE and ASP: How to read/write a file?

moyrehalbio

New Member
I haven't found any answer on the web, maybe one of you knows the answer:With Win CE and MS ASP, how can I read a file or do any IO-Operations?I have this example code which doesn't work at all because the FileSystemObject doesn't exist in CE. \[code\]<% dim fs,tfile set fs=Server.CreateObject("Scripting.FileSystemObject") set tfile=fs.CreateTextFile("c:\somefile.txt") tfile.WriteLine("Hello World!") tfile.close set tfile=nothing set fs=nothing %>\[/code\]Is there any alternative to get this done?
 
Top