我想从此网址中提取数据:
https://www2.aus.edu/facultybios/index.php?sort=
注意它在sort = ""
而不是字符时在同一页面上列出A-Z的方式。
不幸的是以下代码:
HtmlWeb web = new HtmlWeb();
HtmlDocument doc = web.Load(@"https://www2.aus.edu/facultybios/index.php?sort=", "GET");
一直使用url达到index.php。 ?
之后的所有内容都不会被考虑在内。
我确定答案很简单但谷歌搜索根本没有帮助我htmlagilitypack没有文档。任何帮助将不胜感激。