ASPNET_WP.EXE Problem

  • Thread starter Thread starter Mukesh
  • Start date Start date
M

Mukesh

Hi,

I have developed small asp.net application. When i start using the
application, "ASPNET_WP.EXE" is loaded in to the process. Everytime i
refresh the page, it increases the memory for that process, which is never
comes down(even after closing the browser). Does anybody know's the solution
how to avoid memory problem???
Is there anyways to solve that problem?

Mukesh Patel
 
Mukesh,

The garbage collector built into .net is fired at certain intervals (those
intervals are determined by the framework itself) and destroys objects no
longer in use. When that happens the memory will be regained.

The framework controls memory very carefully and leaves instances of objects
running when it senses that the application may be speeded up by re-using
those objects. The framework manages all this very efficiently, so the short
answer is don't worry about it.

Sincerely,

--
S. Justin Gengo, MCP
Web Developer

Free code library at:
www.aboutfortunate.com

"Out of chaos comes order."
Nietzche
 
Back
Top