Hi,
we need a tool to detect easily memory leaks in an ASP.NET Application. We have an application, which consumes lot of memory.
Thanks
Hi,
we need a tool to detect easily memory leaks in an ASP.NET Application. We have an application, which consumes lot of memory.
Thanks
Well, "easily" is the trick... however dotTRACE might be worth a look.
Using WinDbg is not as easy as using dotTrace but it can help you to discover lots of oddities in your application. Other than that you can find invaluable information about debugging ASP.Net applications on Tess Ferrandez's blog.
Rob Mariani wrote a nice article on Tracking down managed memory leaks which helped me track down the dangling references in a desktop application.
.Net Memory Profiler. Used the trial version once. It was helpful, but I don't need it often enough to warrant buying one.
The thing I found was to ALWAYS make sure you dispose of any resources, particularly in DirectoryServices, that implement IDisposable.
Read Tess at If broken it is, fix it you should. It should get you on the right path.
I have published a new article on the subject on MSDN. It contains a list of tools.