Browse by Tags
All Tags »
ASP.NET (RSS)
A web server is deemed to be unresponsive if it’s either not providing a response at all and/or it’s not achieving the response time (performance) expectations of the users. In my “Troubleshooting 101” post, I mentioned that after the problem has been
Read More...
It's often helpful to instrument your code to help with troubleshooting, etc. Instrumentation is really just a fancy word for tracing . Here's an example of tracing to a file from ASP.NET. <%@ Page Language="C#" CompilerOptions="/d:TRACE" %> <script
Read More...
These tips are reasonably well-known and have been blogged by others. However, considering how often I come across these common “mistakes”, I felt yet another blog post was worthwhile: 1) Disable ASP.NET debugging in production! I cannot emphasize this
Read More...