Chrome, pdf display, Duplicate headers received from the server

后端 未结 7 965
抹茶落季
抹茶落季 2020-12-14 14:29

I have a section on a website where I display a pdf inside a light box. The recent chrome upgrade has broken this displaying:

Error 349 (net::ERR_RESP

7条回答
  •  春和景丽
    2020-12-14 15:17

    This solution will preserve filename AND open file in browser (.net mvc)

    Response.Headers["Content-Disposition"] = "inline;filename=\"" + theFile.filename + "\"";
    return File(filePath, mimeType);//don't specify filename. It will create second Content-Disposition header
    

提交回复
热议问题