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ファイルで私はこれを使用します:
Application["obj"] = "test";
静的関数内でこれを呼び出すにはどうすればよいですか。
どんな助けでも大歓迎です。
HttpContext.Currentプロパティを使用できます。
HttpContext.Current.Application["obj"] = "test";