为了让网站运行时不出现因为异常而报错,接下来是今天百度后的学习笔记。
1.最简单的方法则是在配置文件里加上<customErrors>节点
<customErrors>节点用于自定义一些url,其作用是当网站出现错误时跳转到此url。
<customErrors mode="On" defaultRedirect="1.html">
<error statusCode="404" redirect="2.html"/>
</customErrors>
从例子可以看出,customErrors节点有mode和defaultRedirect两个属性。mode是一个必选属性,它可以取3个值:On(表示在本地和远程用户都会看到自定义错误信息),Off(禁止使用自定义错误信息,本地和远程用户会看到详细的错误信息),RemoteOnly(表示本地用户将看到详细信息,而远程用户则不会)。
在<customErrors>节点下还包含有<error>子节点,这个节点主要是根据服务器的http错误代码而重定向到我们自定义的错误页面,注意此时mode属性要为On。
2.使用过滤器HandleErrorAttribute
当使用这个过滤器时,程序中出现的异常信息会被封装起来,然后路由知道转到该Controller对应的error方法,如果此路径下没有改文件,则会去shared目录中寻找此文件。另外一个相关的是在Global.asax中的Application_Error[object sender,EventArgs e]方法,它是捕捉异常的最后一道防线。HandleErrorAttribute是在customErrors基础子上的,如果想使用HandleErrorAttribute,customError的mode属性必须为On或RemoteOnly。
3.控制器异常处理
这种方式在需要进行异常处理的controller中重写OnException()方法,因为它本身就继承了IExceptionFilter接口。
//处理异常 protected override void OnException(ExceptionContext filterContext) { string filePath = Server.MapPath("~/ExcelModel/Exception.txt"); FileInfo file = new FileInfo(filePath); if (!file.Exists) { file.Create().Close(); } StreamWriter sw = System.IO.File.AppendText(filePath); sw.WriteLine(DateTime.Now.ToString() + ":" + filterContext.Exception.Message); sw.Close(); base.OnException(filterContext); //Redirect(""); }
4.路由异常处理
设置路由参数: routes.MapRoute("ErrorHandling","{*str}",new {Controller="Exception",action="Err"});
这个一定要放在所有配置的最下面
public ActionResult Err(string str)
{
ViewData["ErrMsg"]="您访问的页面出错了,"+str;
return View();
}