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 オブジェクトではありません。
何か助けはありますか?