Reputation: 15607
When a request is sent to the server from the browser for a web page what are the information sent to the server in the http
request? Can we check those information?If yes how to do that?
Upvotes: 1
Views: 3424
Reputation: 73132
Fiddler is the best for this (IMO)
You can save all requests in a particular session. Have it running in the background while you click away, then see what got sent over the wire. Replay requests, etc. The features go on and on.
Upvotes: 2
Reputation:
You can check that with Chrome using a right-click > inspect > ressources or under Firefox using Firebug.
Upvotes: 0
Reputation: 18692
Install Firebug and you can inspect the HTTP headers of both the request and response. That will work for either GET or POST requests. You can do the same with Fiddler for IE.
Upvotes: 2