サイトを公開するときはdebugをfalseに設定する必要があります

1765 ワード

ASP.NETプロジェクトルートディレクトリのWeb.configには、次のノードがあります.
<compilation debug="true" targetFramework="4.5" />
 
開発段階では、このように設定できます.Webサイトをサーバに配備する場合は、次のようにdebugをfalseに設定する必要があります.
<compilation debug="false" targetFramework="4.5" />
 
サーバ上のすべてのアイテムのdebug属性値をfalseにするには、machine.configに設定する必要があります.
 
32ビットコンピュータconfigの場所は:%windir%Microsoft.NET\Framework\[version]\config\machine.64ビットパソコンconfigの場所は:%windir%Microsoft.NET\Framework64\[version]\config\machine.config
  machine.configsystem.webノードの下には、次のように設定されています.
<configuration>
    <system.web>
          <deployment retail=”true”/>
    </system.web>
</configuration>

 
 
するに、デバッグ、エラー が な は、debugプロパティをtrueに し、デバッグが し、debugプロパティをfalseに します.