filename\'
When i click the link, my filename.xxx should be downloa
Zip your file (.zip) and IE will give the user the option to open or download the file.
You could configure this in your http-Header
httpResponse.setHeader("Content-Type", "application/force-download");
httpResponse.setHeader("Content-Disposition",
"attachment;filename="
+ "MyFile.pdf");