ASP.NET MVC - How to access Session data in places other than Controller and Views

后端 未结 5 1230
粉色の甜心
粉色の甜心 2020-11-30 01:44

We can access session data in controllers and views like this:

Session[\"SessionKey1\"]

How do you access Session values from a class othe

5条回答
  •  离开以前
    2020-11-30 02:45

    You just need to call it through the HttpContext like so:

    HttpContext.Current.Session["MyValue"] = "Something";
    

提交回复
热议问题