Is there an equivalent Java EE ServletContext in ASP.NET?

I need a way to store application level data (i.e. internetworking sessions) in ASP.NET. In Java EE, I would use ServletContext. Is there an equivalent in ASP.NET?

+3
source share
1 answer

From what you are saying (cross-user sessions), the closest thing to ASP.NET is the HttpApplicationState object .

+5
source

Source: https://habr.com/ru/post/1708662/


All Articles