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.