这可是广大MS程序员的福音呀。只是还有好多还没有翻译过来。。期待中!
http://www.microsoft.com/china/msdn/countdown.htm
在System.Net中为 WebRequest 使用 HTTP代理:
if(bool.Parse(CommonClass.GetConfigItem("QueryKeywordUseProxy")))
{
System.Net.WebProxy proxy = new System.Net.WebProxy(CommonClass.GetConfigItem("AddressProxy"),true,null,null);
System.Net.GlobalProxySelection.Select = proxy;
}
<WuyinHostingSettings>
<add key="QueryKeywordUseProxy" value="true" />
<add key="AddressProxy" value="http://localhost:8080" />
</WuyinHostingSettings>
因为我的服务器没有开80端口,而是使用ISA Server 2000 的8080端口作为代理,所以顺便用了这个。:)
顺便请大家检查http://vhost.5inet.net/ 错误。
http://www.microsoft.com/china/msdn/countdown.htm
在System.Net中为 WebRequest 使用 HTTP代理:
if(bool.Parse(CommonClass.GetConfigItem("QueryKeywordUseProxy")))
{
System.Net.WebProxy proxy = new System.Net.WebProxy(CommonClass.GetConfigItem("AddressProxy"),true,null,null);
System.Net.GlobalProxySelection.Select = proxy;
}
<WuyinHostingSettings>
<add key="QueryKeywordUseProxy" value="true" />
<add key="AddressProxy" value="http://localhost:8080" />
</WuyinHostingSettings>
因为我的服务器没有开80端口,而是使用ISA Server 2000 的8080端口作为代理,所以顺便用了这个。:)
顺便请大家检查http://vhost.5inet.net/ 错误。