Show sent POST Values with Fiddler..How do i do that?

Viewed 42133

I make some requests to a site and i want to see, what kind of variables has been sent to the server..

May be its possible with fiddler but i can't figure it out, how to do it..

4 Answers

I ran into this same problem but the answers here did not help me. WebForms does not display json posted data. I figured out for posted json data, you need to check the Textview tab.

enter image description here

To summarise:

  • Inspectors->WebForms: will show you classic html form posted values.

  • Inspectors->Textview: will show you json and text posted values.

Related