for (int i = 1; i <= theCount; i++)
{
if (!string.IsNullOrEmpty(footerHtml))
{
theDoc.PageNumber = i;
theDoc.AddText("Page " + i + " of " + theCount);
//theDoc.AddHtml("My-html-code-with-internal-css-was-here")
}
}
我想使用ABCpdf在上述代码中添加页脚,以增加.NET中的页数。 我的 HTML文档显示的是我在AddHtml中使用的CSS。仍未获得 PDF 中包含文本的CSS。它以经典HTML格式显示“第1页,共3页”。