user2570135
user2570135

Reputation: 3009

create and view PDF document in C# and javascript

I am starting a Web project in C# and javascript and I need to create and view PDF document. As an example, create and view a resume.

What library can I use to achieve the above.

Thanks for your help

Upvotes: 1

Views: 544

Answers (2)

Gaurav
Gaurav

Reputation: 1

To render PDF using javascript you can use

Adobe Embed APIs: https://www.adobe.com/devnet-docs/dcsdk_io/viewSDK/index.html

  • Cloud-based
  • Easy to integrate
  • Lots of PDF features

Upvotes: 0

ofir elarat
ofir elarat

Reputation: 235

You can use iTextSharp to generate PDF's with C#.

https://www.nuget.org/packages/iTextSharp/

With this lib you can create the PDF. then return it to the client and use it as you wish download or present (you can present it with iframe to the route that return the pdf)

Upvotes: 2

Related Questions