Force PNG to download instead of opening in browser with IIS

前端 未结 5 990
既然无缘
既然无缘 2020-12-28 21:13

I need to be able to have a subdirectory of images all PNG\'s to be downloaded instead of opened in the browser window. I am using IIS for the web server.

Is there

5条回答
  •  甜味超标
    2020-12-28 22:09

    You can't if you directly serve the PNGs, but if you use ASP, you can add:

    Response.AddHeader("Content-Disposition", "attachment");
    

提交回复
热议问题