0

我正在尝试从给定的 url 读取 html 内容,这是我的简单 c# 代码

WebClient client = new WebClient();    
var downloadString = client.DownloadString("https://www.yahoo.com"); // suppose 

但问题是我无法获取 html 内容,在执行它在我的 IDE 中告诉的代码后:“在您继续之前,请激活 javascript”,但是在我所有的浏览器中都启用了 javascript(firefox/explorer/chrome)

如何解决这个问题?

4

1 回答 1

0

在您的示例中,您拼错了域名。在其他方面它工作得很好。http://screencast.com/t/3YibceMtSFu

于 2013-03-14T08:56:40.007 回答