请帮我解决这个问题:
private void DownLoadCompleted(object sender, HtmlDocumentLoadCompleted e)
{
var doc = new HtmlDocument();
doc.LoadHtml("http://www.unnu.com/popular-music-videos");
//var query = doc.DocumentNode.Descendants("img");
MessageBox.Show("chegou");
foreach (HtmlNode linkNode in doc.DocumentNode.SelectNodes("@//img[@src]"))
{
HtmlAttribute link = linkNode.Attributes[@"href"];
HtmlNode imageNode = linkNode.SelectSingleNode(@"//.php?src");
HtmlAttribute src = imageNode.Attributes[@"src"];
string Link = link.Value;
Uri imageUrl = new Uri(src.Value);
MessageBox.Show("chegou");
}
}
我需要使用您各自的网址获取所有图像和标题。我正在使用 Windows Phone 7.5。dll是一样的。