Internet Explorer 11 x Reporting Services

Asked

Viewed 350 times

0

I have a problem with the use of Internet Explorer 11. In compatibility mode all work, but in the normal way, the Report Viewer opens displays the controls, but does not render the data.

I already added the folder App_Browsers with the file .browser as recommended in some forums, and already includes in Master Page from project to line <meta http-equiv="X-UA-Compatible" content="IE=11" />.

The Report version is 10. Mine 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>

inserir a descrição da imagem aqui

1 answer

1

I was having the same problem in Internet Explorer 11, for in the Internet Explorer 9 works normally.

I’m using Microsoft.ReportViewer.Webforms 10.

I have tried several types of META tag listed here https://msdn.microsoft.com/en-us/library/windows/desktop/ff966521(v=vs.85). aspx and here https://msdn.microsoft.com/en-us/library/windows/desktop/ff966528(v=vs.85). aspx, but none of them worked.

Since Reportviewer Webforms is used in a corporate system with few users, the temporary solution I found was to add the system URL to Compatibility View Mode directly in IE in the window below:

inserir a descrição da imagem aqui

It worked at least until we found a better solution.


Updating

Definitive solution.

Upgrade to Microsoft.ReportViewer.Webforms 11. Download: http://www.microsoft.com/pt-br/download/details.aspx?id=35747

It is necessary to update the project in Visual Studio by adding reference "Microsoft.ReportViewer.Webforms.dll" usually located in "C: Program Files (x86) Microsoft Visual Studio 12.0 Reportviewer".

Returned to function normally.

Browser other questions tagged

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