Reportviewer does not load in Internet Explorer 11

Asked

Viewed 233 times

1

I’m trying to open a report with the ReportViewer in the Internet Explorer 11 And the same doesn’t open at all. This occurs with the application published on an application server, but when I run the local report on my development machine with the visual studio 2015 installed, the report opens perfectly. The image below shows how part of the report is being displayed on the application server:

inserir a descrição da imagem aqui

Below is the image of the report being loaded in debug mode:

inserir a descrição da imagem aqui

The report also opens perfectly in previous versions of IE, in the Chrome and other browsers. But I need the same to work on IE11. I believe I am missing to install something on the server, because it is working in debug mode, on my machine with the VS2015 installed.

The code in the Web.Config which refers to ReportViewer is below:

<compilation debug="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>

1 answer

1

I already had this problem. I managed to solve it by adding the tag

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

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

  • My page is inside a masterPage, I tried to include this goal and it did not work.

Browser other questions tagged

You are not signed in. Login or sign up in order to post.