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);
}
}
}
}