我尝试在本地计算机上通过Visual Stu
dio运行
解决方案.我看到网页出现并在
页面上收到
错误:无法连接到远程服务器
无法建立连接,因为目标计算机主动拒绝它127.0.0.1:8888
加载的页面是http://localhost:5009/,当我尝试localhost:8888时,我收到“此页面无法显示”
认为它可能与防火墙有关所以我打开了端口8888,但问题仍然存在
有人建议这可能是Visual Studio 2013隐藏的IIS Express问题但我无法找到它的配置.
谢谢
我有同样的问题.这是指向Fiddler的配置.我
删除了web.config
文件中的fiddler配置并
解决了问题.
<defaultProxy enabled="true" useDefaultCredentials="true">
<proxy autoDetect="false" bypassonlocal="false" proxyaddress="http://127.0.0.1:8888" usesystemdefault="false" />
</defaultProxy>
原文链接:https://www.f2er.com/csharp/92418.html