Recent Posts

Always Perform Server Side Validation

less than 1 minute read

This isn’t exactly a performance tip but rather a security tip for when people think that they could improve performance by cutting out server-side validatio...

Avoid Using Session State

less than 1 minute read

Where possible, you should try and avoid using session state, especially in process session state. While using one web server, performance is usually not a p...

Avoid Running Sites In Debug Mode

less than 1 minute read

This may sound simple but it is so easy to forget. Do not publish your ASP.NET application in debug mode. We can do as much optimizations in our code as we w...