ASPX to Word

Hi,
I’m evaluating your product for purchase. Please show me an example of how I can convert an ASPX page (html) to a RTF or DOC. The pages are protected behind a login (Asp .Net Memebership).
Thanks,
G

This message was posted using Aspose.Live 2 Forum

Hi there,
Thanks for your inquiry.
Sure, please see the code below which demonstrates how to import an HTML document and save it in the RTF and DOC format using Aspose.Words.

Document doc = new Document("In.html");
doc.Save("Out.rtf");
doc.Save("Out.doc");

If I can help you with anything else please feel free to ask.
Thanks,