发布网站时应该把debug设置false
在ASP.NET项目根目录下的Web.config
中有这样的一个节点:
<compilation debug="true" targetFramework="4.5" />
在开发阶段的时候,可以这样设置。当把网站部署到服务器上后,必须把debug
设置成false,如下:
<compilation debug="false" targetFramework="4.5" />
如果想让服务器上所有项目的debug
属性值为false,必须到machine.config
中设置。
32位电脑machine.config的所在位置是:%windir%\Microsoft.NET\Framework\[version]\config\machine.config
64位电脑machine.config的所在位置是:%windir%\Microsoft.NET\Framework64\[version]\config\machine.config
在machine.config
中system.web
节点下设置如下:
<configuration><system.web><deployment retail=”true”/>
</system.web></configuration>
总之,当需要调试、跟踪错误,把debug
属性设置为true,调试结束,再把debug
属性设置为false。
郑重声明:本站内容如果来自互联网及其他传播媒体,其版权均属原媒体及文章作者所有。转载目的在于传递更多信息及用于网络分享,并不代表本站赞同其观点和对其真实性负责,也不构成任何其他建议。