如何在不打开文件浏览器窗口的情况下触发上传(C#/WebBrowser 控件)?
此页面是解决我的问题的一个很好的例子:
http://valums。 com/files/2009/ajax-upload/demo-jquery.htm
如果您单击浏览按钮并选择一个文件,该文件将以 ajax 方式上传(不会发布整个文件)网页)。
我正在开发一个 C# WinForm 应用程序,其中 WebBrowser 控件允许我自动解析和填写表单,并且我需要上传文件而无需打开“文件浏览”窗口,该窗口会抢走其他窗口的焦点。
如何才能实现这一目标?
This page acts as a good example for my problem :
http://valums.com/files/2009/ajax-upload/demo-jquery.htm
If you click on the browse button and select a file, the file will be uploaded ajax-style (without posting the whole webpage).
I am developing a C# WinForm application where a WebBrowser control allows me to parse and fill forms automatically and I need to upload a file without opening the "File Browse" window which steals focus away from other windows.
How can this be achieved ?
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
由于您有一个想要自动填充的特定页面,因此重新创建使用 WebClient 或 HttpWebRequest 生成的 POST 消息会容易得多。
可以在此处找到一个很好的代码示例,还有一个很好的工具(一个但很多人)要查看发布的数据是 fiddler2
Since you have one specific page you want to automatically populate it's going to be a lot easier to recreate the POST message that is generated using either the WebClient or a HttpWebRequest.
A good code example can be found here and a good tool (one of many though) to see the data that gets posted is fiddler2