ReportViewer does not load in Internet Explorer 11

1

I'm trying to open a report with ReportViewer on Internet Explorer 11 and it does not open completely. This occurs with the application posted to an application server, but when I run the local report on my development machine with visual studio 2015 installed, the report opens perfectly. The image below displays the how part of the report is being displayed on the application server:

Belowistheimageofthereportbeingloadedindebugmode:

ThereportalsoopensperfectlyinpreviousversionsofIE,Chrome,andotherbrowsers.ButIneedittoworkonIE11.IbelievethatsomethingismissingfromtheserverbecauseitisworkingindebugmodeonmymachinewithVS2015installed.

ThecodeinWeb.ConfigthatreferencesReportViewerisbelow:

<compilationdebug="true" targetFramework="4.5">
  <assemblies>
    <add assembly="Microsoft.ReportViewer.WebForms, Version=11.0.0.0, Culture=neutral, PublicKeyToken=89845dcd8080cc91" />
    <add assembly="Microsoft.ReportViewer.Common, Version=11.0.0.0, Culture=neutral, PublicKeyToken=89845dcd8080cc91" />
  </assemblies>        
  <buildProviders>
    <add extension=".rdlc" type="Microsoft.Reporting.RdlBuildProvider, Microsoft.ReportViewer.WebForms, Version=11.0.0.0, Culture=neutral, PublicKeyToken=89845dcd8080cc91" />
  </buildProviders>
</compilation>
    
asked by anonymous 09.01.2017 / 14:09

1 answer

1

I've had this problem. I was able to resolve it by adding the tag

<meta http-equiv="X-UA-Compatible" content="IE=11">

Within <head> of the page. I found this in the MSDN forums.

    
09.01.2017 / 17:21