I am using Java Struts, sending it to user using the following codes
response.setContentType("application/vnd.ms-excel");
response.setHeader("Content-Disposition", "attachment;filename=" + fileFullName);
Firstly I hope that this is the correct place for my question... :) I hope that you can help me.
The error message I get when I try to open a file from Internet Explorer is
"C:\Documents and Settings\USERNAME\Local Settings\Temporary Internet
Files\Content.IE5\QXJ0P436\btbillsdfjlsfjk.csv' could not be found"
I am trying to "Open" the csv file format into Excel. It allows me to "Save" the file to which ever directory I want but I don't want to do that, I would just like to open the file. This has always worked in the past so I'm now wondering why the file is 'missing'.
Any ideas?
Thanks in advance.