在IIS7.5上部署后端代码后浏览器访问报500错,信息显示不详细如下:
image.png
尝试网上多种解决方案都无效最后再stackoverflow上面找到解决办法。在web.config中添加两段代码
<system.web>
<customErrors mode="Off"></customErrors>
</system.web>
<system.webServer>
<httpErrors errorMode="Detailed" existingResponse="PassThrough"></httpErrors>
</system.webServer>
stackoverflow网址:https://stackoverflow.com/questions/13020103/webapis-messagean-error-has-occurred-on-iis7-not-in-iis-express
网友评论