Visual Studio 2008. Windows XP, SP-2. I wrote a small program for reading the code of the html page, namely https://www.gismeteo.ru/city/legacy/4392/ . Read code:
ServicePointManager.ServerCertificateValidationCallback = delegate { return true; };//обход подлинности сертификата byte[] response = null; string str = ""; using (WebClient client = new WebClient()) // WebClient class inherits IDisposable { try { response = client.DownloadData("https://www.gismeteo.ru/city/legacy/4392/"); str = System.Text.Encoding.UTF8.GetString(response); } catch (WebException ex) { Logging("Network error: " + ex.Message + " - "); } catch (Exception exception) { Logging(exception.Message + " - "); } } And everything seemed to be normal. But today I noticed (I run every day in the morning) that I suddenly received the code of another page. Having climbed the site, I came to the conclusion that the code was read https://beta.gismeteo.ru/weather-tula-4392/ (I found unformatted code only there, not to mention some lines). I study recently. What could have caused this to happen?