Tek-Tips is the largest IT community on the Internet today!

Members share and learn making Tek-Tips Forums the best source of peer-reviewed technical information on the Internet!

  • Congratulations SkipVought on being selected by the Tek-Tips community for having the most helpful posts in the forums last week. Way to Go!

Modules in ASP.NET

Status
Not open for further replies.

bitseeker

Programmer
Nov 27, 2005
60
0
0
US
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!
 
You can use Application variables that will then be able to be modified and accessed from any page.


____________________________________________________________

Need help finding an answer?

Try the Search Facility or read FAQ222-2244 on how to get better results.

 
Status
Not open for further replies.

Part and Inventory Search

Sponsor

Back
Top