Reputation: 1121
I'm working on .NET project and want to display an ebook on web page, now I have a problem...
what is the best, easiest and fastest format to display it on web page, PDF, ePub, XML or others? Why? What API or library I should use? Thanks
UPDATE:::
I got that PDF is tge best solution now and easy to use. Now can i display or view PDF file in Sliverlight, and have custom menu allow user to interact with PDF content?
Upvotes: 1
Views: 1903
Reputation: 39695
The best and fastest is to display it as HTML. Why? Because HTML is what web was designed for in the first place, and it will allow users with any browser on any platform to read and access the book. XML as xhtml with css might also be a good choice.
The question is what format is the book originally in? If it's in PDF, then there are a lot of PDF to HTML converters out there, but nothing already built into the .net framework. If it's plain text, then creating html is easy.
Upvotes: 2