Question

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.

Was it helpful?

Solution

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.

Licensed under: CC-BY-SA with attribution
Not affiliated with StackOverflow
scroll top