Crystal Report ASP.NET Viewer and IE 10

crystal-reportsinternet explorerinternet-explorer-10

There seems to be an issue with viewing Crystal Reports in ASP.NET Crystal Report viewer in IE 10.0. I switch IE 10 in Developer Tools to run in IE 9 mode, and I can see the report then.

Best Answer

I accidentally came across a strange fix: outputting a string (other than space) on the form load event subsequently allows the viewer to render correctly in IE10

 Dim vBrowser As System.Web.HttpBrowserCapabilities = Request.Browser
 If vBrowser.Type = "IE10" And vBrowser.MajorVersion > 9 Then
     Response.Write(".")
 End If
Related Topic