tags:

views:

53

answers:

3

Is there any tool to find out for a given URL to which I submit a request, how much data gets transfered from the server to the client?

A: 

Try debugbar. That will give you the transmitted number of bytes.

Also Fiddler2 could be used to look at each response, and I think that will tell you the number of bytes, as well as being able to actually view what was sent.

Antony Scott
A: 

How about Firebug?

http://www.getfirebug.com

rogeriopvl
A: 

Use firefox live http headers extension and look the http content-lenght header.

Jorge Niedbalski R.
I would have liked to try this one out, but cant download firefox at the office :(
So use a network traffic analyzer like Wireshark and follow the TCP stream.
Jorge Niedbalski R.