aspnet_wp.exe memory problem

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
 
K

Kevin Spencer

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

Top