When releasing a website, set debug to false and release debug to false.
Under the root directory of the ASP. NET projectWeb.config
There 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 mustdebug
Set to false as follows:
<compilation debug="false" targetFramework="4.5" />
If you wantdebug
The 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.config
Mediumsystem.web
The node settings are as follows:
<configuration>
<system.web>
<deployment retail=”true”/>
</system.web>
</configuration>
In short, when debugging and tracking errors are requireddebug
Set the property to true. After debugging is complete, Setdebug
Set property to false.