Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
個々のasp.netページにDebug = falseを設定することは可能ですか? アプリケーション全体のデバッグを有効にしたいのですが、そのページだけに Debug = false を設定したいアプリケーションのページがありますか?
Debug="false"はい、 .aspx マークアップの上部にあるページ ディレクティブで設定できます。
Debug="false"
<%@ Page language="C#" Debug="false" .... %>