egyamado
egyamado

Reputation: 1121

What is the best format to display ebook on web page, PDF, ePub, or others in Silverlight?

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

Answers (1)

Mikael Svenson
Mikael Svenson

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

Related Questions