通过 Excel AddOn 上传文件

发布于 2024-09-16 07:48:00 字数 276 浏览 2 评论 0原文

我需要为 Excel 开发一个插件(2003 及更高版本),它必须在单击“保存”按钮(带有事件 Application_DocumentBeforeSave)时上传 excel 文件。 我的问题是我该怎么做?

我尝试使用 Net.WebClient UploadFile 并在 WinXP 上运行正常,但在 Windows Vista 和 Windows 7 上不起作用,可能是 UAC 或某些安全模型阻止了操作,我不知道。

文件必须通过 http 和 https 上传。

感谢您的帮助。

I need to develop a Add on for Excel (2003 and greater), it must upload the excel file when click the Save Button (with the event Application_DocumentBeforeSave).
My question is how can I do that?

I try with Net.WebClient UploadFile and runs OK on WinXP but doesnt work on Windows Vista and Windows 7, may be the UAC or some security model is stoping the action, I dont know.

The file must be uploaded via http and https.

Thanks for your help.

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

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

发布评论

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

评论(1

森末i 2024-09-23 07:48:00

最好的选择是创建一个 Java Web 服务并使用 C# webervice 参考调用它。将文档转换为字节流,然后 Java Web 服务完成其余逻辑。

The best option is to create a Java Web Service and call it using C# webervice reference. convert the doc to a byte stream and the java web service make the rest of the logic.

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