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?
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).
You can use the magic tool named "fiddler", it will let you know all the requests that happens from your website
精彩评论