Force to open “Save As…” popup open at text link click for PDF in HTML

后端 未结 18 1381
無奈伤痛
無奈伤痛 2020-11-22 10:28

I have some big size PDF catalogs at my website, and I need to link these as download. When I googled, I found such a thing noted below. It should open the \"Save As

18条回答
  •  一向
    一向 (楼主)
    2020-11-22 11:13

    Add a response header Content-Disposition:attachment; followed by the file name. Remove the Meta Content-Disposition;Inline; which will open the document in the same window

    In java it is set as

    response.setHeader("Content-Disposition", "attachment;filename=test.jpg");
    

提交回复
热议问题