首页 > 代码库 > 错误页定义方法

错误页定义方法

(1)代码逻辑错误:

默认显示/Views/Shared/Error.cshtml

(2)404 500等错误

<system.web>

<customErrors mode="Off" defaultRedirect="/error.htm"/>

</system.web>

其中error.htm放在iis根目录下

(3)项目名称错误

在IIS中配置

技术分享

技术分享

技术分享

技术分享

错误页代码:

技术分享

技术分享

 

错误页定义方法