从特定表单获取特定输入元素
就像javascript中的语句一样
string value = document.forms["sap.client.SsrClient.form"].elements["sapwdssr..requestCounter"].value;
,在C#中是否有相应的语句来获取特定表单内特定输入元素的值?
我可以通过使用 HTMLDocument 和 mshtml 界面来做到这一点。但这是一个相当麻烦的过程,因此如果存在任何直接的方法或属性那就太好了。
Like the statement,
string value = document.forms["sap.client.SsrClient.form"].elements["sapwdssr..requestCounter"].value;
in javascript, is there a corresponding statement to get the value of a particular input element within a particular form in C#?
I can do so by using HTMLDocument and mshtml interface. But that is a rather cumbersome process so if any direct method or property exists it would be great.
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
我假设您要求解析 HTML,而不是尝试对呈现的网页进行某种形式的运行时操作,对吗?
如果是这种情况,我强烈建议您查看 HTML Agility Pack,我们已经非常成功地使用它来解析HTML 就像 XML 一样。您可以使用简单的 XPath 查询来完成您的工作。
I assume you are asking to parse HTML, rather than attempting to do some form of runtime manipulation of a rendered web page, correct?
If that's the case, I highly suggest you look into the HTML Agility Pack, which we have used very successfully to parse HTML as if it were XML. You could do your stuff with a simple XPath query.