摘要: C#获取网页的验证码,并且显示在 picbox控件上view plaincopy to clipboardHttpWebRequest request = (HttpWebRequest)WebRequest.Create("http://127.0.0.1/pic/Default.aspx");request.Timeout = 20000;request.ServicePoint.ConnectionLimit = 100;request.ReadWriteTimeout = 30000;request.Method ="GET";HttpWebRe 阅读全文
posted @ 2013-08-04 17:56 zp_Alex 阅读(421) 评论(0) 推荐(0) 编辑
摘要: 1.有url获取到网页源代码: 1 using System.Web; 2 using System.IO; 3 using System.Net; 4 private void GetHtmlinfo(string PageUrl) 5 { 6 WebRequest request = WebRequest.Create(PageUrl); 7 WebResponse response = request.GetResponse(); 8 S... 阅读全文
posted @ 2013-08-04 17:53 zp_Alex 阅读(3455) 评论(0) 推荐(0) 编辑