Currently I am using the:
Response.ContentType = "application/vnd.ms-excel"
Response.AddHeader "Content-Disposition", "attachment;
filename="myFile.xls"
Opening this page will prompt the user to save or download, as
expected.
What I am trying to do is create the XLS documents overnight so the
user doesnt need to wait for the asp script to take its course. They
can simply click on the "myFile.xls" and download its already saved
results. However, I don't know how to save the file dynamically
without user intervention to click "Save"
Thanks in advance for any assistance.