如何在不打开文件浏览器窗口的情况下触发上传(C#/WebBrowser 控件)?

发布于 2024-11-30 17:05:55 字数 353 浏览 4 评论 0原文

此页面是解决我的问题的一个很好的例子:

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 技术交流群。

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

发布评论

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

评论(1

最偏执的依靠 2024-12-07 17:05:55

由于您有一个想要自动填充的特定页面,因此重新创建使用 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

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