检查一下你的目录web share属性

解决方案 »

  1.   

    我里面有一个包含文件
    是包含的一个JS的文件,
    这个JS文件里面,有一个写动作
    首先穿件一个层document.write('<iframe id=meizzDateLayer Author=wayx frameborder=0 style="position: absolute; width: 144; height: 190; z-index: 9998; display: none"></iframe>');
    strFrame = ""//给一些内容
    window.frames.meizzDateLayer.document.writeln(strFrame);
    就是上面一句写出错了,帮我看看,目录web share属性没有问题
      

  2.   

    不是这样说,执行测试时是以ASPNET身份来执行的,你要是不给这个帐号在这个目录的相关权限的话,一定报错在你那目录那给这帐号加上读写和删除的权吧
      

  3.   

    document.write('<iframe id=meizzDateLayer Author=wayx frameborder=0 style="position: absolute; width: 144; height: 190; z-index: 9998; display: none"></iframe>');改成
    document.write('<iframe id=meizzDateLayer Author=wayx frameborder=0 style=\"position: absolute; width: 144; height: 190; z-index: 9998; display: none\"></iframe>');
      

  4.   

    不能用“%”作为分隔符号,因为在asp.net中,“%”有“除”或者“取余”等意思,换成“@”之类的就没有问题了。