我通过http代理连接互联网,而我在localhost的一些网络应用程序需要访问互联网。我在哪里可以为它们设置代理设置?
答案 0 :(得分:29)
我需要的是在system.net
web.config
<system.net>
<defaultProxy>
<proxy
proxyaddress="http://10.0.2.231:42"
bypassonlocal="true"
/>
</defaultProxy>
</system.net>