Template management

Does Aspose provide a template management portal?
Does Aspose provide an online template editor for Word templates or do we need Word in order to edit the templates?

Hi Eduardo,

Thanks for your inquiry. Well, with Aspose.Words API you can programmatically generate, modify, convert, render and print documents without utilizing Microsoft Word®. However, Aspose.Words does not offer UI or web control for performing these document processing tasks. There is also no template management portal.

Our sister company GroupDocs.com offers a viewer app which you may consider including in your application to view the various file formats. With GroupDocs apps, you can also have limited editing functionalities. For more information, we suggest you please contact GroupDocs support through live chat or support forums of GroupDocs.

Moreover, if you just want to view pages in web browser, you can convert all pages in your Word document to images and then display them. Here is how you can convert pages to images:

Document doc = new Document(MyDir + @"RonaldStanleyThesis.docx");
ImageSaveOptions opts = new ImageSaveOptions(SaveFormat.Png);
opts.PageIndex = 0;
opts.PageCount = doc.PageCount;
opts.PageSavingCallback = new HandlePageSavingCallback();
doc.Save(MyDir + @"16.3.0.png", opts);
private class HandlePageSavingCallback : IPageSavingCallback
{
    public void PageSaving(PageSavingArgs args)
    {
        args.PageFileName = string.Format(@"D:\Temp\Page_{0}.png", args.PageIndex);
    }
}

Best regards,