从网页获取文本

时间:2011-07-01 18:50:57

标签: visual-studio-2008 capture text-capture

如何从网页中捕获文字? 我是否需要获取页面源以及如何获取?

1 个答案:

答案 0 :(得分:1)

WebClient对象有一个方法可以为您执行此操作:

WebClient client = new WebClient();
string html = client.DownloadString("http://www.google.com");