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

Author: rfrost Date: 01/13/2010

How can I improve the performance of ASP.NET by adjusting the CLR thread throttling properties?

This post applies to: .NET 2.0, 3.0 & 3.5. The CLR uses an adjustable threshold property called...

Author: rfrost Date: 01/13/2010

How can I throw an exception without losing the original stack trace information in .NET?

Use the "throw" keyword in place of "throw ex" to perserve the original stack trace information....

Author: rfrost 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...

Author: rfrost Date: 02/27/2009

How can I deploy a single ASP.NET web page to a web site that is precompiled?

Every now and then, you may find yourself in the situation where you need to deploy a single file on...

Author: rfrost 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....

Author: rfrost 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...

Author: rfrost Date: 01/27/2009

How do I enable GZip compression for my web server in IIS?

GZip/Deflate compression will compress the response payload from the IIS web server to the browser....

Author: rfrost 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...

Author: rfrost Date: 01/20/2009