004. 连接默认错误页

Posted 无止境

tags:

篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了004. 连接默认错误页相关的知识,希望对你有一定的参考价值。

1. 在项目中添加一个默认错误页面 error.aspx ; 注意错误页面一般使用静态页面即可, 没有必须要使用aspx的页面(除非有特殊需求), 即可指定html页面即可, 下面的演示是基于aspx的页面;

 1 <%@ Page Language="C#" AutoEventWireup="true" CodeFile="error.aspx.cs" Inherits="error" %>
 2 
 3 <!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd">
 4 
 5 <html xmlns="http://www.w3.org/1999/xhtml">
 6 <head runat="server">
 7     <title></title>
 8 </head>
 9 <body>
10     <form id="form1" runat="server">
11     <div>
12     我是默认错误页面!!!!
13     </div>
14     </form>
15 </body>
16 </html>

 

2.然后在web.config的system.web节点下添加如下内容:(此时访问该网站下一个不存在的页面, 将会跳转到该页面中)

1 <customErrors defaultRedirect="error.aspx" mode="On"></customErrors>

 

以上是关于004. 连接默认错误页的主要内容,如果未能解决你的问题,请参考以下文章

TP5报如下的错误 Indirect modification of overloaded element of thinkpaginatorCollection has no effect(代码片段

python 爬虫004-使用urllib2与正则表达式扒取糗事百科新鲜页首页帖子

错误:E/RecyclerView:未连接适配器;跳过片段上的布局

连接MySQL出现错误:ERROR 1045 (28000): Access denied for user ‘root‘@‘localhost‘ (using password: YES)(代码片段

VSCode插件开发全攻略代码片段设置自定义欢迎页

使用实体框架迁移时 SQL Server 连接抛出异常 - 添加代码片段