首页 > 代码库 > 发布网站时应该把debug设置false
发布网站时应该把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。
发布网站时应该把debug设置false
声明:以上内容来自用户投稿及互联网公开渠道收集整理发布,本网站不拥有所有权,未作人工编辑处理,也不承担相关法律责任,若内容有误或涉及侵权可进行投诉: 投诉/举报 工作人员会在5个工作日内联系你,一经查实,本站将立刻删除涉嫌侵权内容。