Reputation: 908
When designing a ASP.net WebForm application what are some important steps to take (or hacks if you like to use the term) to ensure the best possible performance (in terms of speed, stability, and scalability)?
Upvotes: 5
Views: 222
Reputation: 314
when it comes to performance of the web application we need to consider many things this article will help you understand what performance is where to start. In web application 80 percent of the time it is front end which requires performance optimization, what needed to be optimized is a big question and really hard to answer this article i found will help you understand the web performance optimization Web Performance Optimization
Upvotes: 0
Reputation: 908
If you care so much for speed, stability and scalability you might first question whether ASP itself is a good compromise
Upvotes: 0
Reputation: 3681
AJAX
calls.For further more read these links.
Upvotes: 4
Reputation: 219127
Since so many things can affect performance, it's difficult to provide such a list. We may make assumptions about your code that aren't correct, and may focus on the wrong areas while you suffer poor performance from something we would otherwise take for granted.
Having said that, in general you might keep an eye on:
The list can go on and on, and that's just with the web tier of the application. You could easily encounter site performance problems resulting from slow server-side code or server-side resource dependencies (database, etc.) that can't be debugged in the browser.
So the main point is to learn your debugging tools. Through combinations of browser tools (FireBug, Chrome Developer tools, etc.), Visual Studio debugging (or whatever else you may use for your .NET code), good logging, and even profiling tools you can identify your bottlenecks and tweak your system accordingly.
Upvotes: 3
Reputation:
Check your website in google page speed :click
It will give your problem . for unwanted style.images and etc.......
Upvotes: 1