通过 Excel AddOn 上传文件
我需要为 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 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
最好的选择是创建一个 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.