UpdatePanel Slowness in IE

前端 未结 7 1304
梦如初夏
梦如初夏 2020-12-30 16:01

I\'m working on an ASP.Net application and working to add some Ajax to it to speed up certain areas. The first area that I am concentrating is the attendance area for the te

7条回答
  •  执笔经年
    2020-12-30 16:31

    Working with the DOM and HTTP Requests are inherently slow, it's the browser. The best way to speed it up is to reduce the number of times there is an HTTP request (AJAX or otherwise), and reduce the number of DOM actions, search, edit, replace, etc.

提交回复
热议问题