coolboycsaba
coolboycsaba

Reputation: 183

It is possible to view what httprequest was sent by the browser when submitting a form?

When I submit a form on a site I want to know what HttpRequest was sent from the browser to the server, is this possible from any browser, or is there any firefox addon to do this ?

Upvotes: 0

Views: 56

Answers (2)

ZippyV
ZippyV

Reputation: 13068

IE9 has this functionality in the Developer Tools (press F12). In Firefox you can use the extension Firebug. For Opera you can use Dragonfly.

There is also an application that has much more functionality and allows you to change any values in the request: Fiddler. Fiddler works with pretty much all browsers on Windows.

Upvotes: 1

Uwe Keim
Uwe Keim

Reputation: 40756

For Firefox there is the Live HTTP Headers extension.

For Internet Explorer, there is the ieHTTPHeaders extension which shows you HTTP requests and responses.

Upvotes: 0

Related Questions