I am using the following Essential Objects assemblies in my asp.net web application.
EO.Pdf.dll 4.0.23.2
EO.Web.dll 10.0.28.2
I have an existing Web Form that displays text and images from a database. I added ASPXToPDF control to the web form and the following method to the corresponding code page.
Code: C#
Button_Click(object sender, EventArgs e)
{
EO.Pdf.Runtime.AddLicense(sb.ToString());
ASPXToPDF1.RenderAsPDF(_FileNameString);
}
75% of the time, a PDF is correctly generated. It seems that when my site gets busy, the PDF that is generated excludes some images and text content that otherwise does exist in my page. My web form always (eventually) renders all data. How can I ensure that method, "RenderAsPDF" always renders what is in the page?
I love this product and thanks for any direction!