On my aspx page, I have a script containing the following CSS:
<style type="text/css">
.subcontainer{margin: 0 auto; padding-top: 20px}
.hide-val{display:none;}
</style>
While the page loads fine in the browser and the hide-val
class is not displayed, the styles are not applied when using AddImageURL.
Doc theDoc2 = new Doc();
theDoc2.HtmlOptions.UseScript = true;
theDoc2.HtmlOptions.Media = MediaType.Print;
theDoc2.HtmlOptions.InitialWidth = 1048;
//for multiple pages
theDoc2.Rect.Inset(10, 30);
theDoc2.Page = theDoc2.AddPage();
int theID2;
theID2 = theDoc2.AddImageUrl(urlToHtmlPage);
while (true)
{
theDoc2.FrameRect(); // add a black border
if (!theDoc2.Chainable(theID2))
break;
theDoc2.Page = theDoc2.AddPage();
theID2 = theDoc2.AddImageToChain(theID2);
}
for (int i = 1; i <= theDoc2.PageCount; i++)
{
theDoc2.PageNumber = i;
theDoc2.Flatten();
}
//end multipage
theDoc2.Save(HttpContext.Current.Server.MapPath("htmlimport.pdf"));
theDoc2.Clear();
I have come across similar questions but haven't found a solution yet.
Is there a way to include the CSS style in the document?