IE cannot download files over SSL served by WebSphere

后端 未结 6 1719
眼角桃花
眼角桃花 2021-02-15 18:22

IE 7 & 8 both throw an error when users attempt to download a csv file over https.

Internet Explorer cannot download downloadPage.jsf. Internet Explor

6条回答
  •  隐瞒了意图╮
    2021-02-15 18:42

    I had the same issue with IE8. I made small changes to my code.

    Response.ClearHeaders(); //needed, otherwise "no-cache: set-cookie" was there, had to get rid of it

    Response.addHeader("Cache-Control", "private");

提交回复
热议问题