Slow page loading EVERY time

F

Fabricio Tofoli

Hello all,

I have a simple ASP.NET project that displays the contents of a MySql
database table in the web page.
All pages are extremelly slow, and not only the first time you access them,
it's slow every time...

It seems the problem is not caused by server page generation... it really
feels like the page is ready but the Response takes forever to get to the
client. If I start loading the page and go to "View Source", I can see the
page being "downloaded" almost byte by byte...

Any ideas?

Thanks,
Fabricio Tofoli
 
M

Mark Fitzpatrick

Try turning on tracing and then use the localhost/webname/trace.axd to view
the trace. That could tell you if a particular part of the code itself is
taking a long time as you'll be able to see the times various functions
took. You can also use the Trace.Write() method in your code to create your
own points to watch for.

Hope this helps,
Mark Fitzpatrick
Microsoft MVP - FrontPage
 

Ask a Question

Want to reply to this thread or ask your own question?

You'll need to choose a username for the site, which only take a couple of moments. After that, you can post your question and our members will help you out.

Ask a Question

Top