WebClient MyWebClient = new WebClient();MyWebClient.Credentials = CredentialCache.DefaultCredentials;//擷取或設定用於對向Internet資源的請求進行身分識別驗證的網路憑據。//Byte[] pageData = MyWebClient.DownloadData(@"http://www.baidu.com");//從指定網站下載資料Byte[] pageData = MyWebClient.DownloadData(@"https://10.98.56.228:8888/PUSHCARD|zmsoft|1234|");//從指定網站下載資料string pageHtml = System.Text.Encoding.Default.GetString(pageData); //如果擷取網站頁面採用的是GB2312,則使用這句 //string pageHtml = System.Text.Encoding.UTF8.GetString(pageData); //如果擷取網站頁面採用的是UTF-8,則使用這句MyWebClient.Dispose();
//string strURL = "http://10.98.56.228:1234/PUSHCARD|zmsoft|" + "1234" + "|";//string strURL = "https://10.98.56.228:8888/PUSHCARD|zmsoft|1234|";string strURL = "http://www.baidu.com";// 建立一個HTTP請求HttpWebRequest request = (System.Net.HttpWebRequest)WebRequest.Create(strURL);request.Method = "get";request.ContentType = "application/x-www-form-urlencoded"; System.Net.HttpWebResponse response = (System.Net.HttpWebResponse)request.GetResponse();System.IO.Stream s = response.GetResponseStream();StreamReader Reader = new StreamReader(s, Encoding.Default);//Reader.MoveToContent();string strValue = Reader.ReadToEnd();strValue = strValue.Replace("<", "<");strValue = strValue.Replace(">", ">");Reader.Close();