I have an issue on memory utilization in ASP.NET with C#.
When we open the application memory utilization will be around 20MB and if
traverse through other pages utilization keeps rising, it will never come
down.
Please let me know if anyone has solution for this issue.

Signature
Kumar.A.P.P
Software Engineer, Infosys Technologies Limited.
http://geekwithblog.WordPress.com
Vadym Stetsiak - 04 Oct 2007 20:17 GMT
Hello, Kumar.A.P.P!
It seems like your web-app has memory leaks.
There can be a lot of reasons why it is happening. Have a look for at these
case studies
http://blogs.msdn.com/tess/archive/tags/Memory+issues/default.aspx
--
With best regards, Vadym Stetsiak.
Blog: http://vadmyst.blogspot.com
You wrote on Thu, 4 Oct 2007 04:18:01 -0700:
KAP> I have an issue on memory utilization in ASP.NET with C#.
KAP> When we open the application memory utilization will be around 20MB
KAP> and if traverse through other pages utilization keeps rising, it
KAP> will never come down.
KAP> Please let me know if anyone has solution for this issue.
KAP> --
KAP> Kumar.A.P.P
KAP> Software Engineer, Infosys Technologies Limited.
KAP> http://geekwithblog.WordPress.com
Chris Mullins [MVP - C#] - 04 Oct 2007 21:16 GMT
Welcome to the world of memory leaks! Just using a Garbage Collected
environment doesn't quite mean that memory leaks are a thing of the past...
Download this and use the free trial:
http://memprofiler.com/
Take some snapshots of you app as it's being used, and compare them.
Hopefully the problem will end up being pretty obvious - it often is.
--
Chris Mullins
> I have an issue on memory utilization in ASP.NET with C#.
> When we open the application memory utilization will be around 20MB and if
> traverse through other pages utilization keeps rising, it will never come
> down.
>
> Please let me know if anyone has solution for this issue.