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
.IbelievethatsomethingismissingfromtheserverbecauseitisworkingindebugmodeonmymachinewithVS2015
installed.
ThecodeinWeb.Config
thatreferencesReportViewer
isbelow:
<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>