本帖最后由 8710792 于 2016-12-28 17:22 编辑
[C#] 纯文本查看 复制代码
HttpHelper cl = new HttpHelper();
HttpItem ht = new HttpItem();
ht.URL = "http://www.finishline.com/store/product/womens-adidas-superstar-casual-shoes/prod1300482?styleId=C77153&colorId=WBK";
Console.WriteLine(cl.GetHtml(ht).Html);
Console.ForegroundColor = ConsoleColor.Red;
Console.WriteLine("ok");
HttpHelper cl2 = new HttpHelper();
HttpItem ht2 = new HttpItem();
ht2.URL = "http://www.finishline.com/store/product/womens-adidas-superstar-casual-shoes/prod1300482?styleId=C77153&colorId=WBK";
//直接超时
Console.WriteLine(cl2.GetHtml(ht2).Html);
Console.ReadLine(); |