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.
、こんにちは、みんな、
UserId セッション以外のすべてのセッションを削除しようとしています。
Session["UserId"] の他のセッションを削除したいだけです
asp.net mvcでこの目的に使用できるものはありますか?
次のようなことを試すことができます:
var UserId = Session["UserId"]; Session.Clear(); Session["UserId"] = UserId;