August 13, 2014 at 12:19 pm
I'm using SSRS 2005 & .NET Framework 3.5 to generate reports the contents are working fine but Print Button is not visible in IE - 11 browser (Attachment - NonCompMode.JPG), but it's visible in Compatibility mode(Attachment - CompMode.JPG) in same bowser. I have tried the following x-ua-compatible meta tag in my page even though it's not working as expected, <meta http-equiv="X-UA-Compatible" content="IE=edge"> & <meta http-equiv="X-UA-Compatible" content="IE=9">
Report Assemble which i'm using in my page Register assembly="Microsoft.ReportViewer.WebForms, Version=9.0.0.0"
Kindly Guide me on this issue.
___
Known Is An Drop,Unknown Is An Ocean....
Njoy Programming 🙂
January 22, 2015 at 8:33 pm
This issue has come up quite a few times at my work.
This is caused by Internet Explorer 11 identifying as Mozilla/Webkit and SSRS identifying it as a non-IE browser and disabling printing. A tip - don't use Chrome/Firefox with a UserAgent spoofer, that will show the printer icon but it won't do anything. Printing does, however, work in IETab.
Try changing your User Agent Compatibility string section to:
<meta http-equiv="X-UA-Compatible" content="IE=10">
Or add the following to your web.config file:
<system.webServer>
<httpProtocol>
<customHeaders>
<clear/>
<add name="X-UA-Compatible" value="IE=10"/>
</customHeaders>
</httpProtocol>
</system.webServer>
Viewing 2 posts - 1 through 1 (of 1 total)
You must be logged in to reply to this topic. Login to reply