CPRT (Client Perceived Response Time)

  • Thread starter Thread starter Guest
  • Start date Start date
G

Guest

Hai,
Could any body help me out in finding out the Client Perceived Response
Time for an ASP.Net application.

CPRT is measuring the time it takes for a page to load from browser click to
browser click. This takes into account network latency incurred by routing,
firewalls and proxies.
 
A simple way to find out the ASP.NET server
portion of the response time is to turn tracing on,
and view the trace results.

<%@ Page Trace="true" %>

For network profiling ( routing, firewalls and proxies ),
you'll need something else.




Juan T. Llibre
ASP.NET MVP
http://asp.net.do/foros/
Foros de ASP.NET en Español
=====================
 
Thanks for the response.
Trace only gives the Request time not the Response time.
 

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

Back
Top