aspnet_wp.exe memory problem

  • Thread starter Thread starter EDom
  • Start date Start date
E

EDom

Hi,

I have aspnet_wp.exe with increasing on every postback and not every revisit
to any page. Even if I clear session and close the browser it remains in the
memory. What could be the issue??

Regards,
Vineet
 
You'll get more and better answers about ASP.Net from the
microsoft.public.dotnet.framework.aspnet newsgroup.

The problem could be patience. Garbage Collection doesn't happen
immediately.

Or, it could be something you're doing that isn't releasing some sort of
unmanaged resource, like a file stream, for example, or database
Connection, something like that. This will slow down Garbage Collection. In
the case of a file stream, it won't get closed until the app shuts down.

--
HTH,

Kevin Spencer
Microsoft MVP
..Net Developer
Big things are made up of
lots of little things.
 

Ask a Question

Want to reply to this thread or ask your own question?

You'll need to choose a username for the site, which only take a couple of moments. After that, you can post your question and our members will help you out.

Ask a Question

Similar Threads

aspnet_wp.exe memory problem 11
aspnet_wp.exe Problem 8
Memory Leak in ASP.NET 2.0 Web Page 3
Session variable problem 1
system.cannotunloadappdomain 0
about IIS 3
Session.Abandon() 1
aspnet_wp.exe memory leak 1

Back
Top