ASP.NET自定义错误处理页面的添加
创始人
2024-04-23 09:41:38
0

asp.net自定义错误处理页面方法一

1、添加Web.config, < system.web>< /system.web>中添加< customErrors mode="On"

defaultRedirect="ApplicationErroy.aspx" >< /customErrors>节点,

2、添加错误处理页面:ApplicationErroy.aspx调用下面的方法:

  1. private void DealErroy()  
  2.      {  
  3.          HttpException erroy = new HttpException();  
  4.          string strCode = erroy.ErrorCode.ToString();  
  5.          string strMsg = erroy.Message;  
  6.          erroy.HelpLink = "sss";  
  7.          Response.Write("ErrorCode:" + strCode + "< br>");  
  8.          Response.Write("Message:" + strMsg + "< br>");  
  9.          Response.Write("HelpLink:" + erroy.HelpLink + "< br>");  
  10.          Response.Write("Source:" + erroy.Source + "< br>");  
  11.          Response.Write("TargetSite:" + erroy.TargetSite + "< br>");  
  12.          Response.Write("InnerException:" + erroy.InnerException + "< br>");  
  13.          Response.Write("StackTrace:" + erroy.StackTrace + "< br>");  
  14.          Response.Write("GetHtmlErrorMessage:" + erroy.GetHtmlErrorMessage() + "< br>");  
  15.          Response.Write("erroy.GetHttpCode().ToString():" + erroy.GetHttpCode().ToString() +   
  16.  
  17. "< br>");  
  18.          Response.Write("erroy.Data.ToString()::" + erroy.Data.ToString() + "< br>");  
  19.      }  
  20.  

这种方法不能完整地显示错误信息;

asp.net自定义错误处理页面方法二

1、添加Web.config, < system.web>< /system.web>中添加< customErrors mode="On"

defaultRedirect="ApplicationErroy.aspx" >< /customErrors>节点,

2、添加Global.asax文件,找到Application_Error事件,加入以下代码:    

  1. Exception erroy = Server.GetLastError();  
  2.          string err = "出错页面是:" + Request.Url.ToString() + "< br>";  
  3.          err += "异常信息:" + erroy.Message + "< br>";  
  4.          err += "Source:" + erroy.Source + "< br>";  
  5.          err += "StackTrace:" + erroy.StackTrace + "< br>";  
  6.          Server.ClearError();  
  7.          Application["erroy"] = err;  

2、添加错误处理页面:ApplicationErroy.aspx 加入以下代码;   

  1. Response.Write(Application["erroy"].ToString());  

这种方法能完整地显示错误信息,

***的办法还是两种方法一起用***!

另:web.config中也可以把

  1. < error statusCode="403" redirect="NoAccess.htm" />//访问被禁止  
  2. < error statusCode="404" redirect="FileNotFound.htm" />//找不到页面  

添加进去

http错误代码含义:  

   "100"    :    Continue    

   "101"    :    witching    Protocols    

   "200"    :    OK    

   "201"    :    Created    

   "202"    :    Accepted    

   "203"    :    Non-Authoritative    Information    

   "204"    :    No    Content    

   "205"    :    Reset    Content    

   "206"    :    Partial    Content    

   "300"    :    Multiple    Choices    

   "301"    :    Moved    Permanently    

   "302"    :    Found    

   "303"    :    See    Other    

   "304"    :    Not    Modified    

   "305"    :    Use    Proxy    

   "307"    :    Temporary    Redirect    

   "400"    :    Bad    Request    

   "401"    :    Unauthorized    

   "402"    :    Pay

   "403"    :    Forbidden    

   "404"    :    Not    Found    

   "405"    :    Method    Not    Allowed    

   "406"    :    Not    Acceptable    

   "407"    :    Proxy    Authentication    Required    

   "408"    :    Request    Time-out    

   "409"    :    Conflict    

   "410"    :    Gone    

   "411"    :    Length    Required    

   "412"    :    Precondition    Failed    

   "413"    :    Request    Entity    Too    Large    

   "414"    :    Request-URI    Too    Large    

   "415"    :    Unsupported    Media    Type    

   "416"    :    Requested    range    not    satisfiable    

   "417"    :    Expectation    Failed    

   "500"    :    Internal    Server    Error    

   "501"    :    Not    Implemented    

   "502"    :    Bad    Gateway    

   "503"    :    Service    Unavailable    

   "504"    :    Gateway    Time-out    

   "505"    :    HTTP    Version    not    supported  

以上就是asp.net自定义错误处理页面的添加方法。

【编辑推荐】

  1. ASP.NET中的session存储模式运用
  2. ASP.NET中的文件上传下载方法集合
  3. ASP.NET中的cookie读写方法介绍
  4. ASP.NET中的javascript操作
  5. ASP.NET2.0中的单点登录简介及实现

相关内容

热门资讯

如何允许远程连接到MySQL数... [[277004]]【51CTO.com快译】默认情况下,MySQL服务器仅侦听来自localhos...
如何利用交换机和端口设置来管理... 在网络管理中,总是有些人让管理员头疼。下面我们就将介绍一下一个网管员利用交换机以及端口设置等来进行D...
施耐德电气数据中心整体解决方案... 近日,全球能效管理专家施耐德电气正式启动大型体验活动“能效中国行——2012卡车巡展”,作为该活动的...
20个非常棒的扁平设计免费资源 Apple设备的平面图标PSD免费平板UI 平板UI套件24平图标Freen平板UI套件PSD径向平...
德国电信门户网站可实时显示全球... 德国电信周三推出一个门户网站,直观地实时提供其安装在全球各地的传感器网络检测到的网络攻击状况。该网站...
为啥国人偏爱 Mybatis,... 关于 SQL 和 ORM 的争论,永远都不会终止,我也一直在思考这个问题。昨天又跟群里的小伙伴进行...
《非诚勿扰》红人闫凤娇被曝厕所... 【51CTO.com 综合消息360安全专家提醒说,“闫凤娇”、“非诚勿扰”已经被黑客盯上成为了“木...
2012年第四季度互联网状况报... [[71653]]  北京时间4月25日消息,据国外媒体报道,全球知名的云平台公司Akamai Te...