日期:2014-05-17  浏览次数:20637 次

请大家看一下,我运行页面遇到这个错误
function writeFile(filename,content){ 
  var fso, f, s ; 
  fso = new ActiveXObject("Scripting.FileSystemObject"); //出错行
  f = fso.OpenTextFile(filename,2,true); 
  f.Write(content);  
  f.Close(); 
  alert('生成SM license 成功'); 



错误提示为: Automation 服务器不能创建对象。

这个页面在其他电脑上运行正常,请大家分析下是什么原因,谢谢!

------解决方案--------------------
Scripting.FileSystemObject 也许你的IE浏览器没有这个东西
------解决方案--------------------
开始菜单->运行: regsvr32 shimgvw.dll
google来的,还不行的话看这里。
------解决方案--------------------
应该是服务没有被禁用了
------解决方案--------------------
给个链接,对照着设置
http://zhidao.baidu.com/question/13759768.html