Internet Explorer 11 x Reporting Services

0

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>

    
asked by anonymous 13.01.2015 / 17:02

1 answer

1

I had the same issue with Internet Explorer 11 , because Internet Explorer 9 works normally.

I'm using Microsoft.ReportViewer.WebForms 10.

I tried several META tag types mentioned here link and here link , but none of them worked.

As ReportViewer WebForms is used on a corporate system with few users, the temporary solution I found was to add the system URL in the Compatibility View directly in IE in the window below:

Itworkedatleastuntilyoufoundabettersolution.

Update

Finalsolution.

UpdatetoMicrosoft.ReportViewer.WebForms11.Donwload: link

You need to upgrade the project in Visual Studio by adding "Microsoft.ReportViewer.WebForms.dll" reference usually located in "C: \ Program Files (x86) \ Microsoft Visual Studio 12.0 \ ReportViewer."

Re-run normally.

    
25.02.2015 / 23:07