How to define number of pages to convert into HTML in .NET

Someone can show me how to convert a number of page into one html file please ?

Hello,

Thank you for your request.

To convert one specific page into one html file via our GroupDocs.Conversion for Java library please investigate this documentation , also we have provided demo examples for the library and you can download them from here .

If you will have more questions please feel free to contact us.

-----------

Best regards,
Evgen Efimov

http://groupdocs.com
Your Document Collaboration APIs
Follow us on LinkedIn, Twitter, Facebook and Google+

For example I want to convert page 1 to page 10 to one html file. How can i ? The link you sent me just : Converting one specific page document into HTML or Converting all document pages into one HTML

Hello ,

Sorry for misunderstanding.

Unfortunately, it is not possible with current version of the Conversion library, but our Product team working on the new generation of the library and this feature should be available in it. Please stay tuned with our newsletters.

If you will have more questions please feel free to contact us.

----------------

Best regards,
Evgen Efimov

http://groupdocs.com
Your Document Collaboration APIs
Follow us on LinkedIn, Twitter, Facebook and Google+

when can i have this feature avalaible or ready in .Net yet ?

Hello,

Unfortunately, according of our support policy we can't share any estimated date for when it will be released for Java version. But in the .NET version its already available. In your case you should configure it as shown below:

var options = new HtmlSaveOptions { NumPagesToConvert = 10 }

and the library will convert from first page up to page 10. If you need to convert for example from page 5 up to page 10 then use this code:

var options = new HtmlSaveOptions { PageNumber =5, NumPagesToConvert = 5 }

For more details please investigate this documentation.

If you will have more questions please feel free to contact us.

-----------

Best regards,
Evgen Efimov

http://groupdocs.com
Your Document Collaboration APIs
Follow us on LinkedIn, Twitter, Facebook and Google+