2
votes
1answer
171 views

Value cannot be null with wkhtmltopdf in MVC 4

I am trying to generate a PDF, it works perfectly in development, but not on my production server. I assume it's a permissions thing. The error I get is: Value cannot be null. Parameter name: ...
1
vote
1answer
256 views

Rotativa / Wkhtmltopdf images not displaying

I am currently creating an MVC 4 web application. I have an action that has a base background image which is always the same then an arrow image which changes in degrees depending on the information ...
0
votes
0answers
129 views

wkhtmltopdf and Codaxy Wrapper

I'm using wkhtmltopdf with the Codaxy Wrapper in an asp.net MVC project. With a page with multi page-break and header and footer it freezes and the code goes to: HTML to PDF conversion process has not ...
2
votes
1answer
584 views

How to convert secured HTML (ASP.NET MVC 3) page to PDF using wkhtmltopdf?

I would like to convert a HTML + CSS page to a PDF file. I have tried wkhtmltopdf and I have got a problem because the page I want to access requires to be authenticated on the Website. The page I ...
2
votes
1answer
375 views

Using wkhtmltopdf inside asp.net mvc takes a long time to start

I'm using wkhtmltopdf to download a page and create a pdf, as explaind in here. It all works as expected, but when it reaches the following line: int read = ...
5
votes
2answers
1k views

Emulate ASP.NET authentication cookie

I maintain an ASP.NET MVC website that uses FormsAuthentication.SetAuthCookie(userName, createPersistentCookie); to sign users in (they end up with a cookie named .ASPXAUTH). The client wants me ...
4
votes
2answers
1k views

How do I store resulting HTML as string instead of writing to the browser using Razor view engine?

I have created a website using MVC3 along with the Razor view engine. What I want to do is take the resulting HTML and store it in a stream or string so that I can write it to a file instead of ...