Windows Server 使用fiddler中抓取IIS的请求
在web.config 中添加以下代码.
proxyaddress 可以使用IP address或者localhost
<configuration> <system.net> <defaultProxy> <proxy autoDetect="false" bypassonlocal="false" proxyaddress="http://127.0.0.1:8888" usesystemdefault="false" /> </defaultProxy> </system.net> </configuration>