I have internet connection via http proxy, and some of my web applications at localhost need to access internet. Where can i set up proxy settings for them?
Ilya Smagin
All I needed was to set system.net
in web.config
<system.net>
<defaultProxy>
<proxy
proxyaddress="http://10.0.2.231:42"
bypassonlocal="true"
/>
</defaultProxy>
</system.net>
来源:https://stackoverflow.com/questions/4739669/how-to-set-proxy-settings-for-iis-processes