ASP.Net application loads slowly - VS2008

This is my setup on the stage server

my web application compiled

published website

copied the output directory from my computer to the stage server

domain account created

created a virtual site on a static IP

the site works under the created domain account

impersonate too true as built-in Windows authentication is used with sql server

Now when I first hit my scene site the page loads slowly, which I understand, but the subsequent request takes a while for the page to load.

plans to launch a wired shark to find out what traffic is. is there anything else I should be looking for?

Note. My IIS and SQL are on the same machine.

0


source to share


2 answers


You have to run it through a profiler to see that it is wasting so much time. SQL Server includes its own good query profiler, and if you want a free profiler for .net, nprof . If you are looking to pay for a .Net profiler and it is probably worth it, there are many good deals in the end.



0


source


Can you spot slow? how many seconds?

Definitely check the queries against the sql server to see what they are doing.



There is always a task manager and look at the CPU / memory. For example, it is not difficult to attach a single processor. Anything else on the server?

When having problems, I always like to have a blank aspx page to fix other problems.

0


source







All Articles