使用 HtmlAgilityPack .NET 解析 iframe 内的隐藏字段

发布于 2024-10-11 00:56:50 字数 422 浏览 5 评论 0原文

我在挑选 iframe 表单内所需的数据时遇到问题。是否可以使用 HtmlAgilityPack?这是使用 Firebug 的屏幕截图,以便大家更容易查看。

https://i.sstatic.net/ftt84.jpg

我需要解析出post_form_id。我已经尝试过

var value = doc.DocumentNode.SelectSingleNode("//input[@type='hidden' and @name='post_form_id']")
        .Attributes["value"].Value;

,但显然行不通,因为它位于 iframe 表单内。感谢任何帮助。

I'm having problems picking out data I need that's inside an iframe form. Is it even possible using HtmlAgilityPack? Here's a screenshot using Firebug so it's easier for you guys to see.

https://i.sstatic.net/ftt84.jpg

I need to parse out the post_form_id. I've tried

var value = doc.DocumentNode.SelectSingleNode("//input[@type='hidden' and @name='post_form_id']")
        .Attributes["value"].Value;

but obviously won't work because it's inside the iframe form. Appreciate any help.

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

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

发布评论

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

评论(1

記憶穿過時間隧道 2024-10-18 00:56:50

我将

  1. 使用 HTMLAglityPack 查找 iframe 位置
  2. 使用 System.URI 类查找 iframe 页面的绝对链接
  3. 打开此 iframe 页面
  4. 在 iframe 页面上再次使用 HTMLAglityPack 查找所需信息

I would

  1. Use the HTMLAglityPack to find the iframe location
  2. Use the System.URI class find the absolute link of the iframe page
  3. Open this iframe page
  4. Use HTMLAglityPack again on the iframe page to find the required information
~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文