如何使用 HTML Agility Pack 访问页面的用户 ID 和密码?

发布于 2024-09-19 09:39:16 字数 238 浏览 7 评论 0原文

我正在尝试开始使用 HtmlAgilityPack,想知道是否有人可以帮助我有一个良好的开端。

我正在尝试从 URL https://www.foragentsonly 访问 user1 id 和 password1 id。 com/login.aspx

我该怎么做?

I'm trying to get started with HtmlAgilityPack and was wondering if someone could help me get off to a good start.

I'm trying to access the user1 id and the password1 id from the url https://www.foragentsonly.com/login.aspx

How would I go about that?

如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。

评论(1

牵强ㄟ 2024-09-26 09:39:16

鉴于您已经有了 HTML 文档,这应该可以工作:

HtmlDocument doc = new HtmlDocument();
doc.Load("file.htm");
doc.DocumentElement.SelectNodes("//input[@id=user1]");
doc.DocumentElement.SelectNodes("//input[@id=password1]");

它仅适用于标准 xpath 语法,因此对于更复杂的查询,请使用 此参考作为指南。

Given that you have the HTML document already, this should work:

HtmlDocument doc = new HtmlDocument();
doc.Load("file.htm");
doc.DocumentElement.SelectNodes("//input[@id=user1]");
doc.DocumentElement.SelectNodes("//input[@id=password1]");

It just works off standard xpath syntax, so for more complex queries, use this reference as a guide.

~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文