I know this has been asked, but no deffinet answer has been forth coming.
I have code that creates an excel file from an ASP page grid, but it is designed to run on the local server not on the client side.
oResults = CreateObject("Microsoft.XMLDOM")
oTable = oResults.selectSingleNode("Workbook/Worksheet/Table")
oExcel = CreateObject("Excel.Application")
This works fine in development mode, but when posted to the server and accessed from IE I get the standard Cannot create ActiveX component. Error. I know that this is because the server my not have office installed and that the access rights have not been configured. I also kno ...
Go to the complete details ...