I'm having a problem using reports in Internet Explorer 11
. In compatibility mode all work, but in the normal way, Report Viewer
opens displays the controls, but does not render the data.
I have already added the folder App_Browsers
with the file .browser
as recommended in some forums, and already includes in the Master Page
of the project the line <meta http-equiv="X-UA-Compatible" content="IE=11" />
.
The version of Report is 10. My web.config
is with the lines below:
<handlers>
<add name="ReportViewerWebControlHandler" preCondition="integratedMode" verb="*" path="Reserved.ReportViewerWebControl.axd"
type="Microsoft.Reporting.WebForms.HttpHandler, Microsoft.ReportViewer.WebForms, Version=10.0.0.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a" />
</handlers>
<httpHandlers>
<add path="Reserved.ReportViewerWebControl.axd" verb="*" type="Microsoft.Reporting.WebForms.HttpHandler, Microsoft.ReportViewer.WebForms, Version=10.0.0.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a" validate="false"/>
</httpHandlers>