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;
恐怕没有类似的东西,所以你必须用他们尊敬的名字删除所有会话并保留用户ID会话