I am going through an old ASP.NET app and turning off ViewState for Gridviews where it’s not needed. This is reducing the amount of information sent to the server on postback, but I am curious how much.
In FireBug, I can go to the Net tab, apply the HTML filter, and expand the particular aspx file that got posted. Beneath that, I can click the “Post” tab, and one of the values it shows is the Content-Length of the post. (I had some pages uploading 4 megs on postback… YIKES!).
Does anyone know how to see this value in the Chrome developer tools?
As of Chrome 10, they’ve added the feature! It’s
Content-Lengthunder theRequest Headerssection in theHeaderstab. This tab is available when you selectNetworkfrom the toolbar and then click on a file.I’m going to pretend they did this because I filed the feature request. I changed the world!