-1

我正在尝试从 aspx 页面中的 javacript 写入文件,但出现错误。这是我的代码和错误。

   var fh = fopen("c:\temp\MyFile.txt", 3); // Open the file for writing

               if (fh != -1) // If the file has been successfully opened
               {

                   fwrite(fh, saveData); // Write the string to a file
                   fclose(fh); // Close the file 
               }

属性“fopen”的值为 null 或未定义,而不是 Function 对象。

有什么帮助吗?

4

1 回答 1

2

fopen 不是 JavaScript 函数。

于 2012-07-19T08:59:42.670 回答