Reputation: 16923
How to improve the performance of an ASP.NET application? Which are are the fields I should take care? The application includes DB connections and Image Parsing etc.
Upvotes: 8
Views: 1529
Reputation: 18652
I wrote a book about this that was just released, called Ultra-Fast ASP.NET: Build Ultra-Fast and Ultra-Scalable web sites using ASP.NET and SQL Server.
The book is about 500 pages long, so there's a fair amount you can do, at all tiers: client (HTML/JavaScript structure), IIS, ASP.NET, SQL Server, infrastructure, etc.
Upvotes: 4
Upvotes: 2
Reputation: 53145
Here's an excerpt from the book Jeff, Phil, and K. Scott Allen wrote: 8 ASP.NET Performance Tips. It's a few years old, but most of it's pretty timeless.
My checklist:
Upvotes: 1
Reputation: 158379
The book Improving .NET Application Performance and Scalability has a chapter on Improving ASP.NET Performance, that might be worth reading. The full book is online at MSDN, and is also available as a PDF download.
Upvotes: 1
Reputation: 17492
try avoiding unnecessary postbacks to pages, there are a lot of features you can implement by using things like jQuery or ExtJs framework. Learn how to do AJAX calls and pass info between your app and the server via JSON result sets.
Also, install apps like FireBug and YSlow and use these to analyze your application and follow their recommendations on how to speed up your app. Good luck!
Upvotes: 2
Reputation: 136431
10 Tips for Writing High-Performance Web Applications
20 Tips to Improve ASP.net Application Performance
Bye
Upvotes: 4
Reputation: 10184
Use the .NET CLR profiler to determine where optimization will be useful.
http://msdn.microsoft.com/en-us/magazine/cc301839.aspx
Upvotes: 0