我正在使用MVC,我编写了正常的代码来创建我之前在asp.net中使用的报告。
LocalReport.DataSources.Clear();
LocalReport.DataSources.Add(ReportDataSource);
string MimeType;
string Encoding;
string FileNameExtension;
Warning[] Warnings;
string[] Streams;
byte[] RendereBytes;
RendereBytes = LocalReport.Render(
ReportType,
null, //DeviceInfo,
out MimeType,
out Encoding,
out FileNameExtension,
out Streams,
out Warnings
);
return File(RendereBytes, MimeType);
但是现在在MVC中我的阿拉伯猫窝就像你在附图中看到的那样...... 这个问题有时并不总是......如果你再版,它会很好,没有任何问题。 我的阿拉伯语问题只有英文版。
任何人都知道为什么???