The app I'm building isn't much like I website, more like a live classroom, with a lot of complex, cross-user-session background processing. I've got to use ASP.NET because people may join at the last minute and I can't require them to download anything. So I find I'm asking a lot of questions that don't seem to fit the standard ASP.NET development model. Having said that...
Is it possible to define a Module in ASP.NET, which could contain globally available objects that I could instantiate once and then use in any page, user session or custom class, until the application is completely ended? If so, what is the specific syntax for a simple example of this?
Or if not a module, what's the closest thing I can do to get to the effect I just described?
Thanks!
Is it possible to define a Module in ASP.NET, which could contain globally available objects that I could instantiate once and then use in any page, user session or custom class, until the application is completely ended? If so, what is the specific syntax for a simple example of this?
Or if not a module, what's the closest thing I can do to get to the effect I just described?
Thanks!