Hello!
I post here a short code how we use EO:
Quote:MVCToPDF.ResultFileName = request.ID;
HtmlToPdf.Options.UsePrintMedia = true;
MVCToPDF.RenderAsPDF();
return View("../BoardingCard/Html", modelList);
The memory consumption is shown below. We created 10000 PDFs, the y axis is the memory consumption.
As you can see there is a constant rise in memory consumption.
How could we eliminate this problem?
Thank you!