Hi,
We are in the process of evaluating .Net Aspose.Word but would like to know if it is possible to render a word document from a LocalReport (RDLC) without having to instantiate a ReportViewer object or call the ReportingServices service?
We utilise the built-in Microsoft PDF rendering at present with the following code:
report.Render("PDF", null, out mimeType, out encoding, out extension, out streamids, out warnings);
Ideally we would simply call the AddExtension method on the LocalReport before this line of code, rather than create a ReportViewer object and call AddExtension on that just to render a Word document.
Thanks in advance
T