hello all,
im running on a problem with my jsp page.
i have a download hyperlink that downloads pdf, csv, and/or excel formatted files. all's working fine except for the excel file..the file being saved/downloaded contains garbage characters. im using this bit of code:

Code:
response.setContentType ("application/vnd.ms-excel");
response.setHeader ("Content-Disposition", "attachment;filename=\"" + request.getParameter("file") + "\"");
hope somebody could give me some points of what the possible error could be...

thanks in advance...