• 发布网站时应该把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.NETFramework[version]configmachine.config
    64位电脑machine.config的所在位置是:%windir%Microsoft.NETFramework64[version]configmachine.config

     

    machine.configsystem.web节点下设置如下:

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

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

  • 相关阅读:
    第二周作业
    7-2 求最大值及其下标
    第十一周作业
    第九周编程总结
    第八周作业
    第七周作业
    第六周作业
    第五周作业
    第4周作业
    第三周作业
  • 原文地址:https://www.cnblogs.com/darrenji/p/4122484.html
Copyright © 2020-2023  润新知