DEBUG 模式才顯示文字 DEBUG 模式才顯示文字
  .NET       ez      2011-11-29

利用 #if DEBUG,並在區段中加入要顯示的文字,將 web.config 的 debug mode 設定為 true,就可以輸出資料,再將 debug mode 設定為 false,就可以隱藏資料!

#if DEBUG
Response.Write("要輸出的資訊");
#endif

標籤:   .NET

我要留言