How to decrease the page load time in ASP.NET application?

前端 未结 11 717
独厮守ぢ
独厮守ぢ 2020-12-25 08:33

How to decrease the page load time in ASP.NET application? What should be the precautions and specially when we are interacting with databases

e.g.

  1. w
11条回答
  •  半阙折子戏
    2020-12-25 09:25

    Always use request to load concept in application. Try to avoid unwanted database hit on the page load.if you have large amount of data on page load then you can go with Ajax request call.

提交回复
热议问题