代码之家  ›  专栏  ›  技术社区  ›  Deniz Cetinalp

获取从网页到文本框的链接(vb.net+html敏捷包)

  •  1
  • Deniz Cetinalp  · 技术社区  · 14 年前

    我正在制作一个vb.net应用程序,我正在使用htmlagilityPack。我需要hap从yellowpages.ca获取个人资料链接

    下面是HTML的一个示例:

    <a href="/bus/Ontario/Brampton/A-Safe-Self-Storage/17142.html?what=af&amp;where=Ontario&amp;le=1238793c7aa%7Ccf8042ceaa%7C2ae32e5a2a" onmousedown="utag.link({link_name:'busname', link_attr1:'in_listing_left', listing_link:'18063_lpp|busname_af', headdir_link:'01252110|092202,00891210|092202,00184200|092202', position_address:'l_y', position_number:'l_6'});" id="mapLink5" title="See detailed information for A Safe Self Storage"><span class="listingTitle">A Safe Self Storage</span></a>
    

    这是链接“,/bus/安大略省/brampton/a-safe-self-storage/17142.html?what=af&where=Ontario&le=1238793c7aa%7ccf8042ceaa%7c2ae32e5a2a”。

    如果能帮上一点忙,我们将不胜感激。

    1 回复  |  直到 14 年前
        1
  •  2
  •   Community CDub    7 年前

    HtmlDocument doc = new HtmlDocument();
     doc.Load("file.htm");
     foreach(HtmlNode link in doc.DocumentElement.SelectNodes("//a[@href"])
     {
        HtmlAttribute att = link["href"];
        att.Value = FixLink(att);
     }
     doc.Save("file.htm");
    

    Here

    here