码迷,mamicode.com
首页 > Web开发 > 详细

发布网站时应该把debug设置false

时间:2014-11-26 11:07:01      阅读:201      评论:0      收藏:0      [点我收藏+]

标签:style   blog   io   ar   color   os   sp   on   div   

在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.configsystem.web节点下设置如下:

<configuration>
    <system.web>
          <deployment retail=”true”/>
    </system.web>
</configuration>

 

 

总之,当需要调试、跟踪错误,把debug属性设置为true,调试结束,再把debug属性设置为false。

发布网站时应该把debug设置false

标签:style   blog   io   ar   color   os   sp   on   div   

原文地址:http://www.cnblogs.com/darrenji/p/4122484.html

(0)
(0)
   
举报
评论 一句话评论(0
登录后才能评论!
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!