views:

58

answers:

1

I need a way to store application-level data (i.e. cross user sessions) in ASP.NET. In J2EE I'd use the ServletContext. Is there an equivalent in ASP.NET?

+2  A: 

From what you say (cross-user sessions) the closest you get to that in ASP.NET is through HttpApplicationState object.

Anton Gogolev