0

What's the best way to render a chunk of HTML in an application? We have a rich text editor control (from Karamasoft) in a web page, and need to generate a PDF with records saved from the control (with custom page headers, page footers, and record headers) so I need to be able to render the html so it can be "drawn" onto the page to be saved as a pdf.... is there any staright forward simple way to do this?

Max Schmeling
  • 12,363
  • 14
  • 66
  • 109

3 Answers3

1

HTML Renderer is a library of 100% managed code that draws beautifully formatted HTML.

Rex M
  • 142,167
  • 33
  • 283
  • 313
user115621
  • 283
  • 1
  • 5
0

You may try PURE to render JSON data in HTML: http://beebole.com/pure/

Although this may be out of topic.

But then I'm interested on how do you convert the HTML in PDF.

What technical steps are involved?

Mic
  • 24,812
  • 9
  • 57
  • 70
0

Without using any libraries, you can use the Literal control that allows you to inject the HTML you wish to display to the user.

Dillie-O
  • 29,277
  • 14
  • 101
  • 140