写不会产生价值问题

时间:2014-05-17 08:34:10

标签: vb.net

好吧,我设法得到一个包含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

1 个答案:

答案 0 :(得分:1)

错误仅表示Write方法未生成值。在VB中,这意味着Write Sub ,而不是功能