Search code examples
c#asp.netfirebug

Can't see HTTP POST parameters in firebug


I have page,default.aspx, with a button. On Click of it, I sent a "HTTP POST" request with query string parameters to some server which returned me jSON data and also redirected me back to default.aspx

Now I wish to see what the request looked like and what all query string parameters was sent. However, in firebug(params) section, I can't see it. How do I view it ?


Solution

  • Isnt it as simple as enabling Persist on the Net panel in Firebug and see the details of each entry?

    http://getfirebug.com/wiki/index.php/Net_Panel#Persist

    When this option is enabled, the entries of the requests list are not deleted when reloading the page. Instead the are grouped by page request, which means, when reloading the page several times you will get several request trees having the page title as root.

    enter image description here