当我使用dotnet应用程序中的ajax请求json文件时出现此错误:
HTTP错误404.3 - 未找到
由于扩展程序配置,无法提供您请求的页面。如果页面是脚本,请添加处理程序。如果要下载文件,请添加MIME映射。
请分享解决方案
答案 0 :(得分:0)
Implement below code in `web.config` file. Use the file extension that you want to fetch
For Example: here is .json file
<system.webServer>
<staticContent>
<remove fileExtension=".json" />
<mimeMap fileExtension=".json" mimeType="application/json" />
</staticContent>
</system.webServer>