Reports with thousands of pages
Posted: Fri Jan 02, 2009 6:54 am
Hello Milton,
You need call Dispose method of report to clear page files.
Thank you.
You need call Dispose method of report to clear page files.
Thank you.
Reporting tool and data analytics tools for creating reports and dashboards in ASP.NET, ASP.NET MVC, .NET Core, Blazor, Angular, PHP, Python, WPF, JavaScript, and Java applications.
https://forum.stimulsoft.com/
Code: Select all
string temp = (StiOptions.Engine.ReportCache.CachePath == null || StiOptions.Engine.ReportCache.CachePath.Length == 0) ?
Environment.GetFolderPath(Environment.SpecialFolder.LocalApplicationData) :
StiOptions.Engine.ReportCache.CachePath;
temp = Path.Combine(temp, "StimulsoftReportsCache");
if (!Directory.Exists(temp))Directory.Delete(temp);