My application does not use a ReportViewer, but rather generates a pdf file and sends it to the client as a download, using the following code:
ReportDocument repDoc = new ReportDocument();
repDoc.Load(filename);
// update the crystal report database connection
repDoc.SetCrystalReportDatabase("ConnectionString");
// send the resulting document to the user (as PDF).
Response.ClearContent();
Response.ClearHeaders();
repDoc.ExportToHttpResponse(formatType, Response, true, "Report");repDoc.Dispose();At first, I fixed this problem quite easily, by altering one value in the registry: