Inquiry about creating Document Web Viewer with aspose.total product

Hi.

My company is planning to purchase your aspose.total product at the end of next month to use in a project I am working on.

Your site seems to have a similar feature to one of the many I need to create (an MS Office file viewer on a web page). (Site Link)

Can I get technical support or reference sources to develop features like this?

Thanks.

@dlwhdgur Aspose.Words is a class library for processing documents programmatically. It does not provide any UI for viewing or editing documents.
https://docs.aspose.com/words/net/product-overview/

Through you can use Aspose.Words to convert MS Word document to “viewable” format. For example you can convert document to HtmlFixed format, which is designed right for viewing document on web page.

Document doc = new Document(@"C:\Temp\in.docx");

HtmlFixedSaveOptions opt = new HtmlFixedSaveOptions();
opt.ExportEmbeddedCss = true;
opt.ExportEmbeddedFonts = true;
opt.ExportEmbeddedImages = true;
opt.ExportEmbeddedSvg = true;

doc.Save(@"C:\Temp\out.html", opt);

Regarding the Aspose document viewer app, I am afraid sources of Aspose.Words Editor and Viewer demos are not currently available. We are currently working on actualizing the demo applications. The task is logged as WORDSNET-24764 . We will keep you updated and let you know once the demos are updated. Please accept our apologies for your inconvenience.