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:
Below is the image of the report being loaded in debug mode:
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>
My page is inside a masterPage, I tried to include this goal and it did not work.
– Gleison França