ABCmo
ABCmo

Reputation: 237

How to generate PDF Files based on a HTML+CSS+jQuery page containt

I'm trying into my ASP.NET MVC 4 web-app based on C#, to allow the end-user to download a pdf-file, which it will be generated from an HTML+CSS+JQuery coded page. In fact, this page contains HTML text fields which allows end-users to enter data and then to generate statistics will be displayed in the same web-page to deal this I have used highcharts, a jQuery library which displayes statistics based on data inputs.

The problem here, that I have tried to implement Rotativa (doesn't work with ASP.NET MVC 4), ITextSharp, all what they offer is the conversion of a pure HTML file into PDF, and, doesn't take the fact of the jQuery charts.

Upvotes: 1

Views: 1652

Answers (1)

Akhlesh
Akhlesh

Reputation: 2399

You can try jsPDF. it is an open-source library for generating PDF documents using nothing but Javascript. link for JsPDF

Upvotes: 1

Related Questions