Am using Rotativa to create pdfs in my mvc4 application. Problem is how do i get display page numbers on the pdfs.

有帮助吗?

解决方案 2

You should be able to leverage page footer options on wkhtmltopdf by adding a CustomSwitches property to Rotativa *AsPdf. Take a look at http://madalgo.au.dk/~jakobt/wkhtmltoxdoc/wkhtmltopdf-0.9.9-doc.html

其他提示

This code will give you a page number at the center of the footer.

return new Rotativa.ViewAsPdf()
{
    CustomSwitches = "--page-offset 0 --footer-center [page] --footer-font-size 8"
}

Use --page-offset option to set the starting page number. Set the page offset to 0 and the page number will start at 1 (This is also the default option). Font size can be controlled by specifying the --footer-font-size option.

许可以下: CC-BY-SA归因
不隶属于 StackOverflow
scroll top