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
"Fabricio Tofoli" <> wrote in message
news:...
> 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
>
>
>
>
|