Hi!
I have following simple code:
+ its html code.
It's working fine as js -file and in html site (offline).
But.. when I host it with my created C++ server (which supports
links, pictures, downloads, etc.), the browser (IE 7) says: "could not create object" or something like that.
What's the problem?
I have following simple code:
Code:
<script language="JavaScript">
var obj = new ActiveXObject("Scripting.FileSystemObject");
var file = obj.CreateTextFile("File.txt");
file.writeline("Hello!");
file.close();
obj.quit;
</script>
It's working fine as js -file and in html site (offline).
But.. when I host it with my created C++ server (which supports
links, pictures, downloads, etc.), the browser (IE 7) says: "could not create object" or something like that.
What's the problem?
Comment