In Classic ASP, I'm setting a page's status to 410 Gone, as the contents were previously removed by our administrators. Is there any way to check if this was successfully applied or not?
-
You mean verifying the server returns a 410 for a specific url? Are you talking about in code, or just a tool to verify that?Tejs– Tejs2012-08-13 21:15:29 +00:00Commented Aug 13, 2012 at 21:15
-
You should be able to use Fiddler to make a request for the content; if the server responds with HTTP Status Code 410 then you know it has been successfully applied. Fiddler is here: fiddler2.com/fiddler2dash– dash2012-08-13 21:16:25 +00:00Commented Aug 13, 2012 at 21:16
Add a comment
|
2 Answers
Yes, you can check this by many debugging tools or websites. Here's a couple of websites:
Comments
As @dash pointed out Fiddler is a good tool for debugging and verifying HTML / server responses.