When releasing a website, set debug to false and release debug to false.

Source: Internet
Author: User

When releasing a website, set debug to false and release debug to false.

Under the root directory of the ASP. NET projectWeb.configThere is such a node:

<compilation debug="true" targetFramework="4.5" />

 

You can set it in this way during the development phase. After deploying a website on the server, you mustdebugSet to false as follows:

<compilation debug="false" targetFramework="4.5" />

 

If you wantdebugThe property value is false and must bemachine.config.

 

The 32-bit computer machine. config is located at: % windir % \ Microsoft. NET \ Framework \ [version] \ config \ machine. config
The location of the 64-bit computer machine. config is % windir % \ Microsoft. NET \ Framework64 \ [version] \ config \ machine. config

 

Inmachine.configMediumsystem.webThe node settings are as follows:

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

 

 

In short, when debugging and tracking errors are requireddebugSet the property to true. After debugging is complete, SetdebugSet property to false.

Related Article

Contact Us

The content source of this page is from Internet, which doesn't represent Alibaba Cloud's opinion; products and services mentioned on that page don't have any relationship with Alibaba Cloud. If the content of the page makes you feel confusing, please write us an email, we will handle the problem within 5 days after receiving your email.

If you find any instances of plagiarism from the community, please send an email to: info-contact@alibabacloud.com and provide relevant evidence. A staff member will contact you within 5 working days.

A Free Trial That Lets You Build Big!

Start building with 50+ products and up to 12 months usage for Elastic Compute Service

  • Sales Support

    1 on 1 presale consultation

  • After-Sales Support

    24/7 Technical Support 6 Free Tickets per Quarter Faster Response

  • Alibaba Cloud offers highly flexible support services tailored to meet your exact needs.