我想在torrent搜索结果中获取页码。 我使用它来从包含静态页码的站点获取页码。
string link = "http://www.ted.com/translate/languages/tr";
string htmlicer = kynkal(link);
HtmlAgilityPack.HtmlDocument document = new HtmlAgilityPack.HtmlDocument();
document.LoadHtml(htmlicer);
var node = document.DocumentNode.SelectSingleNode("/html/body/div/div/div[2]/div/div/div[2]/div[2]/p/span[2]");
int pageCount = Int32.Parse(node.innerText);
return pageCount;
但是当我尝试链接" http://extratorrent.cc/search/?new=1&search=example&#34 ;; 我得到xpath" / html / body / table / tbody / tr [3] / td / table / tbody / tr / td [2] / table [2] / tbody / tr / td / a [4] "用萤火虫,它不起作用。
我还试图获得113个中的113个;总共发现了113个种子"检查每一页,直到我发现0种种子,我也不能这样做。那么我怎样才能获得每次搜索的页数?