Search code examples
asp.netinternet-explorer-11silverlight-5.0crystal-reports-2010

Crystal report with IE11


I have a silverlight 4 application and i upgrade to silverlight 5 and i use crystal report to show and print reports but after upgrading the reports appears as blank (empty) in interne explorer 11 Is it possible to open crystal report in IE11 ?


Solution

  • It could be compatibility issue or ActiveX control issue. You could try the following methods:

    • Please add the site of crystal report into IE compatibility view to have a try.
    • Please make sure ActiveX filtering is not turned on. Open Internet Explorer and select the Tools button. Make sure there's no tick before ActiveX Filtering.
    • You could try to add the following meta tag to make it compatible with IE 11:

      <meta http-equiv="X-UA-Compatible" content="IE=9,chrome=1" />

    For more information, you could refer to this thread and this thread.