Make a file open in browser instead of downloading it

前端 未结 4 1576
终归单人心
终归单人心 2020-12-02 10:56

I have an MVC project that will display some documents to users. The files are currently stored in Azure blob storage.

Currently, the documents are retrieved from th

4条回答
  •  攒了一身酷
    2020-12-02 11:55

    Browsers should decide on downloading or displaying based on mime-type.

    Try this:

    string mimeType = "application/pdf";
    

提交回复
热议问题