尝试将数据从 datagrid 导出到 silverlight 4.0 中的 excel 时出现异常
我使用 silverlight 4.0 ,这里尝试将数据从 datagrid 导出到 excel,并在浏览器中运行时收到异常 当前 excel 上下文不支持此操作,但它可以在 OOB(out浏览器)窗口。这里我的代码片段是
dynamic excel = AutomationFactory.CreateObject("Excel.Application");
任何人都可以帮助解决此问题或导出数据的任何建议。
谢谢,
Am using silverlight 4.0 ,here am trying to export the data from datagrid to excel and getting exception as This operation is not supported in the current context for excel when running in the browser but it works in OOB(out of browser) window.Here my code snippet is
dynamic excel = AutomationFactory.CreateObject("Excel.Application");
can anyone help for this or any suggesion to export the data.
Thanks,
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
AutomationFactory
仅在具有提升信任的 OOB 应用中可用。您无法在浏览器中使用它。建议阅读:受信任的应用程序
The
AutomationFactory
is only available in a OOB app with Elevated Trust. You cannot use it in browser.Suggested Reading: Trusted Applications