按 WebBrowser 控件中的提交按钮
我正在开发 C# 桌面程序来进行一些自动发布
- 我正在 C# webbrowser 控件中打开网页(带有表单)
- 一旦打开页面,我就会用数据填充表单字段(使用 C# 代码)。所以没有手动交互
我的问题是:如何自动将数据发送到服务器(换句话说,如何使用 C# 代码按下提交按钮)?
I am developing C# desktop program to do some automatic posting
- I am opening the web page (with form) in C# webbrowser control
- Once it opens the page, I am filling form field with data ( Using C# code). So no manual interaction
My question is: How do I automatically send data to the server (in other word how do I press submit button using C# code)?
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(3)
基本上使用相同的代码来定位和填充字段,您可以遍历 DOM 来查找提交按钮并通过调用向其发送单击。
Basically using the same code to locate and populate the fields, you can traverse the DOM to find the submit button and send it a click via invoke.
看看 WatiN 。但我个人会使用
WebClient
或HttpWebRequest
从服务器获取/发布数据Take a look at WatiN . But I personally would use
WebClient
orHttpWebRequest
to get/post data from/to the server如果您想提交表单,请选中此项,
命名空间
mshtml
位于Microsoft.mshtml
程序集中。只需添加对
Microsoft.mshtml
的引用即可。If you want to submit a form you check this,
The namespace
mshtml
is located in theMicrosoft.mshtml
Assembly.Just add a reference to
Microsoft.mshtml
.