WebClient hangs until timeout
问题 I try do download a web page using the WebClient, but it hangs until the timeout in WebClient is reached, and then fails with an Exception. The following code will not work WebClient client = new WebClient(); string url = "https://www.nasdaq.com/de/symbol/aapl/dividend-history"; string page = client.DownloadString(url); Using a different URL, the transfer works fine. For example WebClient client = new WebClient(); string url = "https://www.ariva.de/apple-aktie"; string page = client