ASP.NET applications scalability best practices guide
.net, asp.net, c#, scalability
Solution
The best advice I can give is to do these three things (roughly in order):
- Avoid unnecessary postbacks
- Avoid excessive viewstate
- Spend your time optimizing your database
Problem
Is there are a guide published by microsoft or somebody else about the best practices for creating scalable web applications? like patterns to use and how to do data access.