标签: visual-studio-2008 capture text-capture
如何从网页中捕获文字? 我是否需要获取页面源以及如何获取?
答案 0 :(得分:1)
WebClient对象有一个方法可以为您执行此操作:
WebClient
WebClient client = new WebClient(); string html = client.DownloadString("http://www.google.com");