How to allow download of .json file with ASP.NET

前端 未结 6 1156
清酒与你
清酒与你 2020-11-28 20:37

How can I enable the download of *.json files from an old ASP.NET site (IIS6 I am led to believe)?

I am getting a 404 page instead of the JSON file.

Do I nee

6条回答
  •  轻奢々
    轻奢々 (楼主)
    2020-11-28 21:17

    When adding support for mimetype (as suggested by @ProVega) then it is also best practice to remove the type before adding it - this is to prevent unexpected errors when deploying to servers where support for the type already exists, for example:

    
        
        
    
    

提交回复
热议问题