We currently have an internal web reporting tool that we create asp
reports that pull data from a sql server. I currently created a report
that instead of outputting the report in html format, it generates an
Excel file behind the scenes and saves it on the web server. My
question is this.....how can I get the file to save locally to the
computer of the user running the report instead of saving on the web
server? I tried the following code, but no luck
--current code that saves on the web server
xlWorkbook.SaveAs "\\webserver\storagefolder\Report.xls"
--tried the following
xlWorkbook.SaveAs "C:\Temp\Report.xls"
--or
xlWorkbook.SaveAs "\Temp\Report.xls"
both seem like the work fine, but when I look for the file, it does not
exist.
Can anyone help me out with this?