0

I have web application, which takes long time(10-12 sec) at initial load (esp., the launch page) and gets faster after that less than a 600ms, So how can we improve it ? and What is Waiting Time when a website load in broswer ? enter image description here

The site is build upon ASP.net and Microsoft SQL Server database.

Suresh Savage
  • 425
  • 2
  • 7
  • 16
  • I would assume the wait time is the time between request and response. The time it takes the request to travel over the wire + time taken for server processing + time for first response packet to travel over the wire. – Brad Allred Nov 13 '13 at 04:56

1 Answers1

0

It looks like you're using Firefox/Firebug. You can check the Firebug wiki for a definition of the different request phases. (Other browsers have similar names.)

In your case, Waiting reflects the time between request and response, as Brad mentioned. That row you highlighted shows a wait of 12.66s for the server to start responding, then just 6ms spent receiving the data.

To resolve that you'll need to debug within your application itself. Tools like YSlow and PageSpeed are good for the front-end components (JS, CSS, images, etc.) but won't help you diagnose the initial page load speed directly.

BrianC
  • 10,591
  • 2
  • 30
  • 50