----------------------------------------------------------- New Message on BDOTNET
----------------------------------------------------------- From: SriBhagavan Message 2 in Discussion Hi, .NET introduces the concept of an application domain, or AppDomain. Like a process, the AppDomain is both a container and a boundary. The .NET runtime uses an AppDomain as a container for code and data, just like the operating system uses a process as a container for code and data. As the operating system uses a process to isolate misbehaving code, the .NET runtime uses an AppDomain to isolate code inside of a secure boundary. A single ASP.NET worker process will host all the the ASP.NET applications(with default settings). Each ASP.NET application will have it�s own set of global variables: Cache, Application, and Session objects are not shared. Even though the code for all the applications resides inside the same process, the unit of isolation is the .NET AppDomain. and following the link to further dig into AppDomains http://odetocode.com/Articles/305.aspx HTH Sri ----------------------------------------------------------- To stop getting this e-mail, or change how often it arrives, go to your E-mail Settings. http://groups.msn.com/bdotnet/_emailsettings.msnw Need help? If you've forgotten your password, please go to Passport Member Services. http://groups.msn.com/_passportredir.msnw?ppmprop=help For other questions or feedback, go to our Contact Us page. http://groups.msn.com/contact If you do not want to receive future e-mail from this MSN group, or if you received this message by mistake, please click the "Remove" link below. On the pre-addressed e-mail message that opens, simply click "Send". Your e-mail address will be deleted from this group's mailing list. mailto:[EMAIL PROTECTED]
