摘要: //方法一: // Create a request for the URL. WebRequest request = WebRequest.Create("http://www.hao123.com"); // If required by the server, set the credentials. request.Credentials = CredentialCache.DefaultCredentials; // Get the response. HttpWebResponse response = (HttpWebResponse)request.Get 阅读全文
posted @ 2012-02-23 15:18 痴人说梦 阅读(841) 评论(0) 推荐(0) 编辑