Why do my ASP.NET pages render slowly when placed on the server?

前端 未结 7 432
忘了有多久
忘了有多久 2021-01-27 07:43

I have a simple aspx page with a GridView control. I\'m loading the GridView with search results after the click of a button. Everything works, but the HTML rendering on the bro

7条回答
  •  别那么骄傲
    2021-01-27 08:27

    It works fine when transferring from localhost, as the network bottleneck is not there -- some browsers wait for the entire table to be transmitted before attempting to render - especially when not using fixed column widths (which can speed up performance); Have you looked at the size of the entire generated page?

提交回复
热议问题