Improve website performance?

When developing an ASP.net WebForm application, do you need to follow some important steps (or hack if you want to use this term) to ensure maximum performance (in terms of speed, stability and scalability)?

+5
source share
5 answers

If you care so much about speed, stability, and scalability, you might first ask if ASP itself is a good compromise.

0
source
  • Avoid round trips to the server
  • If possible, the user AJAXcalls.
  • The implementation of caching.
  • Avoid using Viewstate whenever possible.

Read these links for more details.

+4

, . , , , , .

, :

  • ViewState. ( , .)
  • ( , ..).
  • , .
  • UX. ( post-backs , JavaScript, , , ​​..).

, - . , ( ..), .

, - . (FireBug, Chrome ..), Visual Studio ( - , .NET), , .

+3

Google:

. style.images ..........

+1

when it comes to web application performance, we need to consider many things that this article will help you understand what kind of performance should start. In a web application, 80 percent of the time is an interface that needs to be optimized for performance, what needs to be optimized is a big question and it is very difficult to answer this article, which I found, will help you understand optimizing web performance Optimizing network performance

0
source

All Articles