Getting Exception when trying to export data form datagrid to excel in silverlight 4.0

442 views Asked by At

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,

1

There are 1 answers

0
AnthonyWJones On BEST ANSWER

The AutomationFactory is only available in a OOB app with Elevated Trust. You cannot use it in browser.

Suggested Reading: Trusted Applications