May 20, 2008
Here is another situation that you may come across and what to do in order to gather information about it. The following steps will configure DebugDiag to automatically capture a memory dump of the ASPNET_WP.exe process recycling when it exceeds the memoryLimit...
2 comments
Tags: ASP.NET TipDebuggingASP.NETIIS.NETHigh MemoryCrash
May 19, 2008
So we already talked about what to gather when you are experiencing high memory . But what if you are actually getting a System.OutOfMemoryException? Here is how you capture a dump at the time you are running out of memory. The following steps...
1 comments
Tags: ASP.NET TipDebuggingASP.NETIIS.NETHigh MemoryExceptions
May 15, 2008
So I would like to hear from you guys. I am getting ready to start working a lot on creating some debugging videos (I have already created one and just have to clean it up a little). But it got me thinking that I would would to hear how you...
1 comments
Tags: DebuggingASP.NETIIS.NET
May 15, 2008
So I was looking around CodePlex the other day and I came across some really useful tools up there that I thought I would share. Not all of these will apply to everyone, but they can be really useful things and I would recommend you to check them...
1 comments
Tags: DebuggingASP.NETIISVisual Studio.NET
May 14, 2008
There are two ways to gather data in a Deadlock situation. If you are using Windows 2003 or later (IIS 6.0 or later), then follow the steps in the KB 828222 If you are using an older version of IIS, then follow the steps below: Before the issue...
1 comments
Tags: ASP.NET TipDebuggingASP.NETIIS.NETHang
May 13, 2008
I am not sure how many people are familiar with the .NET Reference Source project, but if you do a lot of debugging of .NET code, chances are that you have had a situation where you wanted to be able to step into the .NET Source from within Visual Studio...
1 comments
Tags: DebuggingASP.NETIISVisual Studio.NETCode
May 09, 2008
When debugging, some of you may have noticed that looking at a managed callstack looks a little different then a native one. One of the big differences is that you don't see the parameters that are passed to the function. So what can we do...
1 comments
Tags: DebuggingASP.NETIIS.NET
May 07, 2008
For this quiz. Let’s say that you run a web server and your customers complain that the site is running slow. What do you do to troubleshoot it? As a follow-up, if you figure out that one page is the problem, what do you do to look into what...
2 comments
Tags: DebuggingASP.NETIISTrivia of the DayHang