我试图在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或undefined,而不是Function对象。
任何帮助?
答案 0 :(得分:2)
fopen不是JavaScript函数。