we need a tool to detect easily memory leaks in an ASP.NET Application. We have an application, which consumes lot of memory.
Thanks
we need a tool to detect easily memory leaks in an ASP.NET Application. We have an application, which consumes lot of memory.
Thanks
check out Microsoft's FxCop which also analyzes performance issues, etc.
.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.
I found this one quite useful too: http://www.codeproject.com/Articles/19490/Memory-Leak-Detection-in-NET
Summary of the interesting points:
I have published a new article on the subject on MSDN. It contains a list of tools.
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.
Read Tess at If broken it is, fix it you should. It should get you on the right path.