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

后端 未结 5 1237
粉色の甜心
粉色の甜心 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

    I would also wrap all session variables into a single class file. That way you can use intelliSense to select them. This cuts down on the number of paces in code where you need to specify the "strings" for the session.

提交回复
热议问题