how 2 use ActiveX in JavaScript with MasterPage ?
hi! i have problem, i want to use an ActiveXObject:
fso = new ActiveXObject("Scripting.FileSystemObject");
it work properly without masterpage, but when using masterpage:
<asp:content>
<SCRIPT language=JavaScript>
...
fso = new ActiveXObject("Scripting.FileSystemObject");
...
</SCRIPT>
</asp:content>
it not work and i get a err message from browser:
Automation server can't create object
what's err?
|