PerfWorld.com
ASP.NET Performance Tuning, Coding Standards, Guidelines, Best Practices, and Other Buzzwords
How can I disable batch compilation for my ASP.NET web pages so that the first user accessing the web site doesn’t experience slow performance?
The batch property of the compilation element, which is enabled by default in ASP.NET, is used to...
Date: 01/13/2010
This post applies to: .NET 2.0, 3.0 & 3.5. The CLR uses an adjustable threshold property called...
Date: 01/13/2010
Use the "throw" keyword in place of "throw ex" to perserve the original stack trace information....
Date: 06/15/2009
How can I use WMI and Powershell to determine if a computer running a 32-bit operating system can support a 64-bit operating system?
Below is a sample Powershell (Windows Powershell - WPS) script that will detect if a computer that...
Date: 02/27/2009
Every now and then, you may find yourself in the situation where you need to deploy a single file on...
Date: 01/29/2009
How can I precompile my ASP.NET web pages so that the first user accessing the web site doesn’t experience slow performance?
Precompiling your ASP.NET web pages is a great way to increase the performance of your web site....
Date: 01/29/2009
How do I prevent ASP.NET trace and debug flags from being left enabled inadvertently in a production environment?
In the Maching.config file, there is a "deployment" element that you can add and set that will help...
Date: 01/27/2009
GZip/Deflate compression will compress the response payload from the IIS web server to the browser....
Date: 01/27/2009
What are the basic performance counters that I should care about to measure the performance of my ASP.NET web site?
Review the ASP.NET Applications\Requests/Sec counter to determine how fast you are able to process...
Date: 01/20/2009