Advertisement
Not a member of Pastebin yet?
Sign Up,
it unlocks many cool features!
- try
- {
- // Create a request for the URL.
- HttpWebRequest request = (HttpWebRequest)HttpWebRequest.Create("http://www.google.ru/");
- request.UserAgent = "Mozilla/4.0 (compatible; MSIE 7.0; Windows NT 5.1)";
- request.Timeout = 10000;
- HttpWebResponse response = (HttpWebResponse)request.GetResponse();
- Stream ReceiveStream1 = response.GetResponseStream();
- StreamReader sr = new StreamReader(ReceiveStream1, true);
- string responseFromServer = sr.ReadToEnd();
- response.Close();
- MessageBox.Show("Сообщение", "Интернет есть", MessageBoxButtons.OK, MessageBoxIcon.Information);
- }
- catch (Exception ex)
- {
- MessageBox.Show("Нет подключения к интернету\nПроверьте ваш фаервол или настройки сетевого подключения");
- }
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement