I want to create an excel file based on data passed from the DB. so far I have used
set fso = createobject("scripting.filesystemobject")
act.write(blah blah) etc
to generate csv file on the server that the user can then open and print. However I want to create formated excel files, I have seen people say use
Response.ContentType = "application/vnd.ms-excel"
but I do not want them to have the file open for them, I just want the page to create the file on the server ready for them to open.
can anyone help
set fso = createobject("scripting.filesystemobject")
act.write(blah blah) etc
to generate csv file on the server that the user can then open and print. However I want to create formated excel files, I have seen people say use
Response.ContentType = "application/vnd.ms-excel"
but I do not want them to have the file open for them, I just want the page to create the file on the server ready for them to open.
can anyone help