0

I have this question https://stackoverflow.com/questions/2688464/ajax-request-from-net-give-me-unexpected-results

and i am using tamper data but i am sure firefox is formatting the data in ways i dont understand. Is there a tool i can use to check firefox post request? and perhaps my C# post request?

Community
  • 1
  • 1
user261192
  • 77
  • 5

2 Answers2

1

Recommend you download the Firebug plugin for Firefox, this will allow you to debug on the browser side more easily.

Also take a look at Wireshark (or similar) to inspect the HTTP requests that are actually going out onto the network.

Paolo
  • 22,188
  • 6
  • 42
  • 49
1

Fiddler is a widely used web proxy/debugger - you can easily see incoming and outgoing requests with it. It can be used with all browsers.

Oded
  • 489,969
  • 99
  • 883
  • 1,009