Microsoft.Reporting.WebForms.Report在Chrome中不会呈现为PDF

时间:2019-06-12 15:36:04

标签: c# webforms report pdf-generation

当我尝试呈现报告时:

 byte[] bytes = Report.Render(
                reportType,
                deviceInfo,
                out mimeType,
                out encoding,
                out fileNameExtension,
                out streams,
                out warnings);

...
// write the file to disk
System.IO.File.WriteAllBytes(path, bytes);
...
stateBag.SetValue(KnownKey.FileName, path);

它不会出现在Chrome中(出现错误“无法加载PDF文档”),除非我更改Chrome设置以下载PDF文件而不是在浏览器中显示它们。为什么是这样?如何摆脱错误,使PDF报告可以在浏览器中正确显示?

0 个答案:

没有答案