我正在尝试 http://www.aspemail.com
使用HtmlAtiligtyPack
. 但它无法读取 head 部分并返回 null。
HtmlAgilityPack.HtmlDocument htmlDocument = new HtmlDocument();
System.Net.WebClient webClient = new System.Net.WebClient();
string download = webClient.DownloadString(linkDetails.Url);
htmlDocument.LoadHtml(download);
HtmlNode htmlNode = htmlDocument.DocumentNode.SelectSingleNode("html/head");
但是当我检查放置的断点时,htmlNode 包含 null。我正在使用这个程序可以吗?