温馨提示×

温馨提示×

您好,登录后才能下订单哦!

密码登录×
登录注册×
其他方式登录
点击 登录注册 即表示同意《亿速云用户服务条款》

ASP.NET中怎么自定义错误处理页面

发布时间:2021-07-15 15:29:04 来源:亿速云 阅读:131 作者:Leah 栏目:编程语言

本篇文章给大家分享的是有关ASP.NET中怎么自定义错误处理页面,小编觉得挺实用的,因此分享给大家学习,希望大家阅读完这篇文章后可以有所收获,话不多说,跟着小编一起来看看吧。

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

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

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

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

private void DealErroy()       {           HttpException erroy = new HttpException();           string strCode = erroy.ErrorCode.ToString();           string strMsg = erroy.Message;           erroy.HelpLink = "sss";           Response.Write("ErrorCode:" + strCode + "< br>");           Response.Write("Message:" + strMsg + "< br>");           Response.Write("HelpLink:" + erroy.HelpLink + "< br>");           Response.Write("Source:" + erroy.Source + "< br>");           Response.Write("TargetSite:" + erroy.TargetSite + "< br>");           Response.Write("InnerException:" + erroy.InnerException + "< br>");           Response.Write("StackTrace:" + erroy.StackTrace + "< br>");           Response.Write("GetHtmlErrorMessage:" + erroy.GetHtmlErrorMessage() + "< br>");           Response.Write("erroy.GetHttpCode().ToString():" + erroy.GetHttpCode().ToString() +    "< br>");           Response.Write("erroy.Data.ToString()::" + erroy.Data.ToString() + "< br>");       }

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

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

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

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

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

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

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

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

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

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

另:web.config中也可以把

< error statusCode="403" redirect="NoAccess.htm" />//访问被禁止  < 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中怎么自定义错误处理页面,小编相信有部分知识点可能是我们日常工作会见到或用到的。希望你能通过这篇文章学到更多知识。更多详情敬请关注亿速云行业资讯频道。

向AI问一下细节

免责声明:本站发布的内容(图片、视频和文字)以原创、转载和分享为主,文章观点不代表本网站立场,如果涉及侵权请联系站长邮箱:is@yisu.com进行举报,并提供相关证据,一经查实,将立刻删除涉嫌侵权内容。

AI