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.
有没有人能够从 app_code 目录中的类中的函数成功执行 Trace.Warn 语句?我没有任何运气,我想知道这是否可能。
(嗯,我确定这是可能的,我只需要弄清楚如何)
是的你可以。
你有没有尝试过:
HttpContext.Current.Trace.Warn("message");
请记住,您必须在 web.config 中启用跟踪
<trace enabled="true" pageOutput="true" mostRecent="true"/>