【IT168 技术文档】 需要在服务器段作如下配置:
<configuration> <system.runtime.remoting> <!-- 模式属性的有效值为 on - 调用方接收默认的错误消息 remoteOnly - 远程组件所在的计算机上的客户端接收 异常的详细信息。远程调用接收 默认的错误消息 off - 调用方接收异常的详细信息 --> <customErrors mode="on"/> </system.runtime.remoting> </configuration>
注意:
<customErrors mode="on"/>
在 </system.runtime.remoting> 之内.
我有一次错误的把 <customErrors mode="on"/> 配在
<system.runtime.remoting>
<application> 之间了,结果咋调试都不对,极度郁闷.