Fundamental ASP.NET question
- From: maneeshkhare@xxxxxxxxx
- Date: 7 Jul 2006 11:49:16 -0700
I have a doubt regarding the architecture, and working of the ASP.NET
framework. I haven't been able to satisfy myself with any answer.
I do understand that for each request for a resource (let's talk page),
we have 1 HttpApplication object from a pool that is managed by
HttpApplicationFactory. My question is this. After all the objects
that are created to service 1 request, is the same dll referenced for 1
page.
Let's say 3 people are trying to access Page1.aspx. Each of their
requests will be handled by 3 separate HttpApplication objects, but
will all their requests be delegated to 1 dll corresponding to
Page1.aspx, or 3 separate dlls.
The reason I'm asking is because if there is only 1 dll being used, I
will think twice before using any static properties/fields, to avoid
synchronization issues, when the properties are read/write.
Thanks in advance.
Maneesh
.
- Follow-Ups:
- Re: Fundamental ASP.NET question
- From: sonic
- Re: Fundamental ASP.NET question
- From: Juan T. Llibre
- Re: Fundamental ASP.NET question
- From: Erik Funkenbusch
- Re: Fundamental ASP.NET question
- Prev by Date: Re: problem: redirect to login page only remotely
- Next by Date: Re: How can I set an app to autorun?
- Previous by thread: OpenPageInsidePage
- Next by thread: Re: Fundamental ASP.NET question
- Index(es):
Relevant Pages
|