好吧,我设法得到一个包含HTML内容的字符串,但我需要进入HTMLDocument
进行解析。
我已经测试了以下代码,而且我无法通过我尝试的任何变体来使用它。
Dim webclient As New System.Net.WebClient
Dim result As String = webclient.DownloadString(link)
Dim htm As HtmlDocument
htm = htm.Write(result)
Dim sDD As Object
sDD = htm.GetElementById("tag-sidebar")
Dim IDD As Object
IDD = htm.GetElementById("highres")
目前它告诉我htm = htm.Write(result)
没有产生价值,所以我有点难过。
我目前正在使用Microsoft Visual Studio 2013 Professional
答案 0 :(得分:1)
错误仅表示Write
方法未生成值。在VB中,这意味着Write
是 Sub ,而不是功能。