6

I filled out an online form which is submitting to a crashed ASP.NET app. If I refresh, I get the message:

To display the webpage again, Internet Explorer needs to resend the information you've previously submitted.

If you were making a purchase, you should click Cancel to avoid a duplicate transaction. Otherwise, click Retry to display the webpage again.

This leads me to believe that the form data I filled out is still in IE's memory. How can I get to it? I tried digging with Fiddler. I can see the request but can't find a way to see the actual form data.

Michael Haren
  • 759
  • 2
  • 12
  • 25

4 Answers4

5

I have Fiddler 2 installed and just tried it with a page that asks me to repost data. I can see all of the session information in the top Session Inspector tab. TextView shows a raw format and WebForms shows a table with each name-value pair. You can even build your own response. I use the IE Developer Toolbar for mostly HTML or CSS help, with images and tables, but Fiddler for the protocol stuff.

Bratch
  • 568
  • 2
  • 7
  • 15
2

Try installing Web Development Helper. I think you can see the posted content with that tool.

fretje
  • 10,692
  • 5
  • 40
  • 63
2

There is the IE developer toolbar available from microsoft. It has all the data required.

Wikipedia link : http://en.wikipedia.org/wiki/Internet_Explorer_Developer_Toolbar

Abhinav
  • 2,050
  • 4
  • 20
  • 25
  • 1
    Wow they have one of their own now. I've always used Web Development Helper. Here's the download link for completeness ;-) http://www.microsoft.com/downloads/details.aspx?FamilyId=E59C3964-672D-4511-BB3E-2D5E1DB91038&displaylang=en – fretje Jul 27 '09 at 13:50
  • It's especially nice that it's built in to IE 8 and 9. – newenglander Nov 08 '11 at 08:56
2

The IE Developer Toolbar and Fiddler2 tools already suggested are are worthwhile.

I also like the TamperIE add-on for this type of troubleshooting, specifically when form values are what you're looking for. Essentially, when enabled TamperIE lets you see and modify the query string and form variables in any GET or POST request.

One more IE add-on worth mentioning is ieHttpHeaders. While generally useful for viewing the request and response header sequence, it also has the ability to show the request body (i.e. POST form variables, etc.)

Chris W. Rea
  • 10,740
  • 16
  • 76
  • 95