远程调试
当出错时,提示在web.config中加<customErrors mode="Off"/>,但加了往往不管用。今天试了一下,发现只要建立一个很简单的web.config,放到调试程序的目录,就OK了。
<?xml version="1.0"?>
<configuration>
<system.web>
<customErrors mode="Off"/>
</system.web>
</configuration>
<?xml version="1.0"?>
<configuration>
<system.web>
<customErrors mode="Off"/>
</system.web>
</configuration>