vote up 1 vote down star
4

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

flag

58% accept rate

8 Answers

vote up 0 vote down

Well, "easily" is the trick... however dotTRACE might be worth a look.

link|flag
vote up 2 vote down

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.

link|flag
+1 for Tess's Blog - Saw her present at Tech.Ed - she really knows her stuff, and her blog is full of useful tips on tracking down issues in ASP.NET applications – Zhaph - Ben Duguid Jan 23 at 21:01
And she is going to prepare a new lab set :) – idursun Jan 23 at 21:15
vote up 2 vote down

Rob Mariani wrote a nice article on Tracking down managed memory leaks which helped me track down the dangling references in a desktop application.

link|flag
vote up 1 vote down

check out Microsoft's FxCop which also analyzes performance issues, etc.

link|flag
vote up 0 vote down

.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.

link|flag
Actually, don't try to dispose disposable static resources such as Brushes.Black if you intend to use them again :) Learned that the hard way... – Spikolynn Jan 23 at 17:38
vote up 0 vote down

I read about Ants Profiler. Good luck.

link|flag
vote up 0 vote down

Read Tess at If broken it is, fix it you should. It should get you on the right path.

link|flag
vote up 0 vote down

I have published a new article on the subject on MSDN. It contains a list of tools.

link|flag

Your Answer

Get an OpenID
or

Not the answer you're looking for? Browse other questions tagged or ask your own question.