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.
注文フォームのあるウェブサイトがいくつかあります。タイムアウトが発生した場合、どのようにログに記録できますか。ログコードはどこに置くことができますか?
Global.asax.cs のアプリでセッション タイムアウトをログに記録する方法は次のとおりです。
protected void Session_End() { NLogger.Log("Session {0} has ended.", new String[] { Session.SessionID, Session.Timeout.ToString()}, NLogger.Info); }