我没有在网络上找到任何答案,也许你们当中的一个知道答案:使用Win CE和MS ASP,我如何读取文件或执行任何IO操作?我有这个示例代码根本无法使用,因为FileSystemObject在CE中不存在。
<% 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 %>
有没有其他选择可以做到这一点?