We have a legacy ASP page that writes content to an excel file by generating client-side VB script based on data from the database. It uses set app = CreateObject(‘Excel.Application’) to initialize Excel.
The problem is that this is an ‘unsigned activex control’, and some clients are now saying they wont change their IE settings to make it work.
Apart from re-writing the page in ASP.NET using Aspose.Cells (which would take a long time for this page), I was wondering if anyone knows any other options that could help?
Thanks!
Thanks for the response. The problem is that the our spreadsheet generated has lots of additional functionality, e.g. setting up some ‘validation’ for certain columns – the HTML solution would not be able to do this I think.
However – your answer forced me to take another look at the code, and it turns out simpler than I thought to do this using an ‘Excel Writer’ like Aspose.Cells 🙂