Logo Questions Linux Laravel Mysql Ubuntu Git Menu
 

ASP 3.0 Application object

I need to know if the application object in ASP 3.0 is shared between all the web site in the same application pool in IIS or it's one application object by site in the same application pool in IIS.

Thanks

like image 995
Cédric Boivin Avatar asked Oct 15 '22 14:10

Cédric Boivin


1 Answers

No, it's not shared in an application pool. It's shared in a single application (virtual directory.)


Clarification per Anthony's comment: Application object is shared in a single application. A top level Web site or a virtual directory is considered a separate application on its own. If you have two domain names (host headers) mapped to a single Web site in IIS, it's considered the same application. It doesn't matter how the Web site is referenced by the clients. What matters is whether or not IIS has individual entries for the Web sites.

like image 171
mmx Avatar answered Oct 20 '22 14:10

mmx