<customErrors mode="Off"/>
我也设置了,还是一样出错!

解决方案 »

  1.   


    <!-- Web.Config 配置文件 --><configuration>
        <system.web>
            <customErrors mode="Off"/>
        </system.web>
    </configuration>
     才能看到哪行错了
      

  2.   

    <configuration>
        <system.web>
            <customErrors mode="off" defaultRedirect="mycustompage.htm"/>
        </system.web>
    </configuration>
      

  3.   

    这绝对是虚拟目录的问题,改变web.config存放的位置试一下,你的dll文件必须放在根目录下的bin目录下。
      

  4.   

    <configuration>
        <system.web>
            <customErrors mode="Off"/>
        </system.web>
    </configuration>这个我加了,还是看不到!
      

  5.   

    问题解决了,!把所有的文件放入FTP的根目录下就OK了,