File opens instead of downloading in internet explorer in a href link

前端 未结 8 1839
萌比男神i
萌比男神i 2020-11-30 11:13
filename\'

When i click the link, my filename.xxx should be downloa

相关标签:
8条回答
  • 2020-11-30 11:43

    Zip your file (.zip) and IE will give the user the option to open or download the file.

    0 讨论(0)
  • 2020-11-30 11:47

    You could configure this in your http-Header

    httpResponse.setHeader("Content-Type", "application/force-download");
            httpResponse.setHeader("Content-Disposition",
                                   "attachment;filename="
                                   + "MyFile.pdf"); 
    
    0 讨论(0)
提交回复
热议问题