I can successfully output my .asp table to an Excel spreadsheet, but what I need to do is to be able to output to a specfic worksheet in the spreadsheet.
The end user needs a one click answer to his problem.
I generate the raw data then two different summary pages, all need to be in the Excel spreadsheet.
End product would have the following tabs;
Summary 1,
Summary 2,
Raw Data
I'm outputing with the following code;
Code:
<%
Response.ContentType = "application/vnd.ms-excel"
Response.AddHeader "content-disposition", "attachment;filename=whatEver.xls"
Thank you for your help