Is it possible? If so, how? If not, what do I need to do to see the REQUEST object (POST and GET vars) in IE?
Viewing REQUEST object in IE with Developer Tool Bar
13.6k Views Asked by sarsnake At
2
There are 2 best solutions below
2

I think you can use Network Capture tab in the Developer Tools (Press F12 to open it), but it is only available in IE9 I believe (http://blogs.msdn.com/b/marcelolr/archive/2011/06/15/network-capture-with-internet-explorer.aspx).
I if you need to capture requests in other versions of IE, the best solution is to use Fiddler (http://www.fiddler2.com)
To start capturing network traffic in Internet Explorer 9+, press F12 to open the Developer Tools, click the Network tab, and then click the Start Capturing button (or a green triangle with a tooltip Enable network traffic capturing).
To see information about a specific request, select an entry in the summary view, and then click the Go To Detailed View button (or just DETAILS).
You can find here Request Headers, Request Body, and so on.
To stop the capturing click a red square.
References: