欢迎您访问程序员文章站本站旨在为大家提供分享程序员计算机编程知识!
您现在的位置是: 首页  >  IT编程

asp.net 在global中拦截404错误的实现方法

程序员文章站 2024-03-08 20:48:04
复制代码 代码如下:void application_error(object sender, eventargs e) { if(context != null) { h...
复制代码 代码如下:

void application_error(object sender, eventargs e)
{
if(context != null)
{
httpcontext ctx = httpcontext.current;
exception ex = ctx.server.getlasterror();
httpexception ev = ex as httpexception;
if(ev!= null)
{
if(ev.gethttpcode() == 404)
{
ctx.clearerror();
response.redirect("~/nofound.aspx", false);
response.end();
}
else
{
server.transfer("~/error.aspx", false);
}
}
}
}