Sign In
ASP.NET Debugging
Debugging from an ASP.NET and Azure Engineer. Posts are from customer issues and things I feel may be useful.
Translate This Page
Translate this page
Powered by
Microsoft® Translator
Options
Email Blog Author
RSS for posts
Atom
RSS for comments
OK
Search
Advanced search options...
Search In:
Everything
Blogs
Forums
People
Groups
Places
Pages
Date range:
All Time
Last Year
Last 6 Months
Last 3 Months
Last Month
Last Week
Last Two Days
Tags
.NET
AJAX
ASP.NET
ASP.NET Tip
Azure
Chat
Code
Crash
Debugging
Exceptions
Hang
High CPU
High Memory
Hyper-V
IE8
IIS
IIS7
Microsoft
MVC
RIA
Silverlight
SOS
Trivia of the Day
Visual Studio
Windows
Archive
Archives
February 2012
(1)
November 2011
(1)
April 2011
(1)
February 2011
(2)
July 2010
(1)
April 2010
(2)
March 2010
(2)
February 2010
(2)
December 2009
(1)
November 2009
(2)
September 2009
(3)
August 2009
(1)
June 2009
(3)
May 2009
(2)
April 2009
(8)
March 2009
(6)
February 2009
(6)
December 2008
(2)
November 2008
(3)
October 2008
(16)
September 2008
(24)
August 2008
(28)
July 2008
(28)
June 2008
(19)
May 2008
(30)
April 2008
(38)
March 2008
(23)
February 2008
(14)
January 2008
(6)
December 2007
(6)
November 2007
(7)
September, 2008
MSDN Blogs
>
ASP.NET Debugging
>
September, 2008
Posts
Subscribe via RSS
Sort by:
Most Recent
|
Most Views
|
Most Comments
Excerpt View
|
Full Post View
ASP.NET Debugging
ASP.NET Tip: Letting Microsoft know about your problems/requests
Posted
over 4 years ago
by
ASP.NET Debugging
4
Comments
Not sure if everyone knows of the various options that there are for communicating with Microsoft so I wanted to let you know about some of them here. Bugs or problems You can log these on the various forums that we have, the forums are found here . ...
ASP.NET Debugging
Event Log message after installing .NET update – part 2
Posted
over 4 years ago
by
ASP.NET Debugging
2
Comments
If you try to install a .NET update, MS07-040 for example, you may see an event log like: Event Type: Error Event Source: LoadPerf Event Category: None Event ID: 3009 · Installing the performance counter strings for .NETFramework failed. The Error...
ASP.NET Debugging
The PDC this year…
Posted
over 4 years ago
by
ASP.NET Debugging
1
Comments
Not sure how many people are planning on attending the PDC (Professional Developers Conference) this year, but it is going to be a fantastic conference. We announced some huge announcements on the PDC web site. http://www.microsoftpdc.com/ We have...
ASP.NET Debugging
Event Log message after installing .NET update
Posted
over 4 years ago
by
ASP.NET Debugging
1
Comments
If you try to install a .NET update, MS08-052 for example, you may see an event log that looks like: Event Source: ASP.NET 2.0.50727.0 Event ID: 1018 · Failed while registering ASP.NET (version 2.0.50727.0) in IIS. Error code: 0x80070003 This message...
ASP.NET Debugging
ASP.NET Tip: How to avoid creating a GC Hole
Posted
over 4 years ago
by
ASP.NET Debugging
5
Comments
There are only a few things that can make a .NET process crash. The most common one is an Unhandled Exception getting raised. Another way that is can happen is by creating a GC Hole. What is a GC Hole So first a little background on what I...
ASP.NET Debugging
ANSWER: POP QUIZ: What’s wrong with this code – part 3
Posted
over 4 years ago
by
ASP.NET Debugging
9
Comments
This issue is an interesting one in that there are more then one problem here that will cause high memory and even what looks to be a problem that will affect the performance of this snippet as well. So the two main problems are that we are using XSLT...
ASP.NET Debugging
Why the questions and what am I going to do with the data
Posted
over 4 years ago
by
ASP.NET Debugging
0
Comments
So over the past few weeks, I have been asking a lot of questions on my blog to get a feel for what people are using and how they are using these things. There are a number of reasons for me to do this and I thought I would explain what some of...
ASP.NET Debugging
POP QUIZ: What’s wrong with this code – part 3
Posted
over 4 years ago
by
ASP.NET Debugging
66
Comments
Imagine you are a developer and your boss comes to you complaining that your piece of code has been deemed to be taking up too much memory and causing problems for the application. You take a look at your code and you see the following, assume that...
ASP.NET Debugging
Who uses SOSEX and what for?
Posted
over 4 years ago
by
ASP.NET Debugging
3
Comments
Another thing I am curious to know is if anyone is using SOSEX and what advantages it gives you for debugging. I have talked to the author of it and I think it has a lot of useful commands, just wanted to get everyone’s take on it. Let me know any...
ASP.NET Debugging
How are you using ASP.NET and Silverlight?
Posted
over 4 years ago
by
ASP.NET Debugging
15
Comments
I have posted in the past about some new things that are coming with DeepZoom and the like. What I am curious about is how is everyone using ASP.NET and Silverlight? Are there plans in the future to use it? I think the options with it are...
ASP.NET Debugging
ASP.NET Tips: Careful Use of Static's
Posted
over 4 years ago
by
ASP.NET Debugging
13
Comments
Not sure how many people realize it, but when you start dealing with multiple users access a system (in this case a web server), you have to be very careful what you store in static's (global variables). This is because all the users will have access...
ASP.NET Debugging
High Memory part 6 – Fragmentation revisited
Posted
over 4 years ago
by
ASP.NET Debugging
1
Comments
I have talked about a bunch of commands used to troubleshoot a managed memory problem in the past and given some situations of using them like: High memory, CPU, or other performance problems with .NET High Memory continued - Datatables High Memory part...
ASP.NET Debugging
How does maxconnection work for a System.Net.HttpWebRequest using a proxy?
Posted
over 4 years ago
by
ASP.NET Debugging
6
Comments
When using a WebRequest, one important thing to keep in mind is how many connections are allowed to be made to the same server. The maxConnection setting will affect how many connections you can concurrently have to a given server. When you...
ASP.NET Debugging
Slow performance of a GridView inside an UpdatePanel
Posted
over 4 years ago
by
ASP.NET Debugging
17
Comments
Here is an interesting problem we ran into recently. The customer had a large GridView that was being updated by AJAX inside on UpdatePanel and seeing bad performance. The reason is that the Client-Side Javascript has to walk the entire DOM of the...
ASP.NET Debugging
Debugger Extension update
Posted
over 4 years ago
by
ASP.NET Debugging
2
Comments
The debugger extension that we were working on getting out with the debugger package has hit some roadblocks and it looks like it isn't going to be shipping with the debugger anytime soon. We are looking to see if we can find an alternative method to...
ASP.NET Debugging
Updating a web site to apply a security patch with the help of Hyper-V
Posted
over 4 years ago
by
ASP.NET Debugging
1
Comments
With the release of the latest security updates, it made me think about how painful it is to have to reboot a server because of applying a security update. You have to balance the need to stay secure, with keeping your server up and running. ...
ASP.NET Debugging
How do you test the performance of your web site?
Posted
over 4 years ago
by
ASP.NET Debugging
23
Comments
I wanted to get a feel for what tools people are using to test the performance of their website. My questions are: Do you check page-load times? Do you dig in to see which files are taking the time How do you track down a page that uses a...
ASP.NET Debugging
SOS Tip: Using help
Posted
over 4 years ago
by
ASP.NET Debugging
1
Comments
This is just a quick little note to remind everyone that the !help command in sos can be very helpful. Not only does it list all of the possible commands, but if you run it and pass it the name of a command, it will print out a bunch of really useful...
ASP.NET Debugging
Who is using MVC?
Posted
over 4 years ago
by
ASP.NET Debugging
43
Comments
So MVC have been out now for a while, and I have seen a few things come by my way with it. I just wanted to see who all was using it and how it was working out for you. I am really curious about things like: Did you have to modify your project plans...
ASP.NET Debugging
Important blogs to visit regularly
Posted
over 4 years ago
by
ASP.NET Debugging
4
Comments
While I like to think of my blog as a “must read”, I wanted to give out a list of some of the blogs that I think are really important to keep up with, either by visiting the blog or by subscribing to the RSS feed. Microsoft Update WSUS WSUS issues Security...
ASP.NET Debugging
Microsoft Optimization for your IT
Posted
over 4 years ago
by
ASP.NET Debugging
1
Comments
I haven’t seen a whole lot of information coming out about how Microsoft can help you optimize your IT infrastructure so I thought I could mention it. You can read more about the whole program at http://www.microsoft.com/optimization/default.mspx There...
ASP.NET Debugging
Any other .NET 3.5 SP1 issues?
Posted
over 4 years ago
by
ASP.NET Debugging
73
Comments
So I recently posted Known issues for ASP.NET with .NET 3.5 SP1 , what I wanted to do is see how SP1 was working out for everyone so far. The things I am wondering are: Did you have any problems installing SP1 Have any existing applications run...
ASP.NET Debugging
Improving Time-Critical Code written in C
Posted
over 4 years ago
by
ASP.NET Debugging
0
Comments
Writing web pages is very similar to writing any other type of code. You have to understand how it is going to be used and where you need to really make things run as quickly as possible. There are a number of tips on this blog already that deal...
ASP.NET Debugging
.NET 3.5 SP1 Source released
Posted
over 4 years ago
by
ASP.NET Debugging
2
Comments
If you remember my previous blog about Debugging .NET Framework Source Code , well we have now updated the source to include 3.5 SP1. You can check out the announcement here . With this, we are releasing the source to the following files: mscorlib...
Page 1 of 1 (24 items)