How to display localhost traffic in Fiddler while

2019-01-16 06:08发布

How do I display localhost traffic in Fiddler while debugging an ASP.NET application?

14条回答
我命由我不由天
2楼-- · 2019-01-16 06:35

One of the possible solutions is remove the proxy settings in IE as follows.

       IE->Tools->Internet Options->Connections->Lan Settings->

disable following

  • Automatically detect settings
  • Use automatic configuration script
查看更多
SAY GOODBYE
3楼-- · 2019-01-16 06:36

To make Fiddler work on localhost with IIS Express you should use this form of URL

http://localhost.fiddler:50262/

This puts correct Host header value (localhost) which satisfies IIS Express.

查看更多
登录 后发表回答