JustBeingHelpful
JustBeingHelpful

Reputation: 18980

tracking multiple redirects in browser plug-in

If there are multiple redirects happening within ASP.NET, is there a tool for any browser to track all redirects? Let's suppose clicking on one page redirects you to page2.aspx, and then page2.aspx redirects you to page3.aspx. I'd like to capture both redirects somewhere. Is this possible in any browser plug-ins without debugging the source code?

Upvotes: 1

Views: 323

Answers (2)

Samir Adel
Samir Adel

Reputation: 2499

You can use the magic tool named "fiddler", it will let you know all the requests that happens from your website

Upvotes: 2

Tomas Voracek
Tomas Voracek

Reputation: 5914

Use any http capture tool like Fiddler. It works with IE, Chrome etc. (in Firefox you must disable add-on version compatibility check, otherwise it will not work).

Upvotes: 2

Related Questions