日期:2014-05-20  浏览次数:20454 次

有人知道web在线代理功能是如何实现的吗?如:http://punker.info/proxy/
不是传统的在IE的internet选项中设定!

------解决方案--------------------
WebProxy proxyObject = new WebProxy( "http://proxyserver:80/ ",true);
WebRequest req = WebRequest.Create( "http://www.contoso.com ");
req.Proxy = proxyObject;