是否可以在web.config中指定自动配置代理?

时间:2011-02-20 23:36:00

标签: asp.net web-config

我希望服务器web.config配置尽可能地与客户端匹配。所有客户都使用proxy auto-configuration script

有没有办法在web.config中指定这个脚本文件?

1 个答案:

答案 0 :(得分:5)

直接在<configuration>

  <system.net>
    <defaultProxy enabled="true" useDefaultCredentials="true">
      <proxy scriptLocation="--- your script location here ---" bypassonlocal="True" />
    </defaultProxy>
  </system.net>