views:

50

answers:

2

I want to verify that my custom-made error pages return the correct HTTP status codes.

  • 200 OK
  • 301 Moved Permanently
  • 401 Unauthorized
  • 404 Not Found
  • 500 Internal Server Error

etc.

How do I make my web browser show me the code?

+2  A: 

I'd recommend you use the HTTP tool Fiddler.

It'll show you the HTTP status code for every request.

dkpatt
That's a pretty slick utility.
Zack Peterson
I hope it helps. Another decent HTTP tool is IEWatch, but it's not free. I find Fiddler is suffice.
dkpatt
+1  A: 
Chathuranga Chandrasekara