服务器之家

服务器之家 > 正文

ASP.NET mvc异常处理的方法示例介绍

时间:2019-12-03 11:59     来源/作者:ASP.NET教程网

1.首先常见保存异常的类(就是将异常信息写入到文件中去) 

复制代码代码如下:


public class LogManager 

private string logFilePath = string.Empty; 
public LogManager(string logFilePath) 

this.logFilePath = logFilePath; 
FileInfo file = new FileInfo(logFilePath); 
if (!file.Exists) 

file.Create().Close(); 


public void SaveLog(string message, DateTime writerTime) 

string log = writerTime.ToString() + ":" + message; 
StreamWriter sw = new StreamWriter(logFilePath, true); 
sw.WriteLine(log); 
sw.Close(); 


2、控制器异常处理 

这种方式就在需要进行异常处理的controller中重写OnException()方法即可,因为它本身继承了IExceptionFilter接口 

复制代码代码如下:


public class ExceptionController : Controller 

public ActionResult Index() 

throw new Exception("我抛出异常了!"); 

protected override void OnException(ExceptionContext filterContext) 

string filePath = Server.MapPath("~/Exception。txt"); 
StreamWriter sw = System.IO.File.AppendText(filePath); 
sw.WriteLine(DateTime.Now.ToString() + ":" + filterContext.Exception.Message); 
sw.Close(); 
base.OnException(filterContext); 
Redirect("/"); 


3、过滤器异常处理 

复制代码代码如下:


namespace MyMVC.Controllers 

public class ExceptionController : Controller 

[Error] 
public ActionResult Index() 

throw new Exception("过滤器异常!"); 



public class ErrorAttribute : HandleErrorAttribute 

public override void OnException(ExceptionContext filterContext) 

base.OnException(filterContext); 
string path = filterContext.HttpContext.Server.MapPath("~/Exception.txt"); 
StreamWriter sw = System.IO.File.AppendText(path); 
sw.WriteLine(DateTime.Now.ToString()+":"+filterContext.Exception.Message); 
sw.Close(); 

标签:

相关文章

热门资讯

玄元剑仙肉身有什么用 玄元剑仙肉身境界等级划分
玄元剑仙肉身有什么用 玄元剑仙肉身境界等级划分 2019-06-21
男生常说24816是什么意思?女生说13579是什么意思?
男生常说24816是什么意思?女生说13579是什么意思? 2019-09-17
配置IIS网站web服务器的安全策略配置解决方案
配置IIS网站web服务器的安全策略配置解决方案 2019-05-23
Nginx服务器究竟是怎么执行PHP项目
Nginx服务器究竟是怎么执行PHP项目 2019-05-24
华为nova5pro和p30pro哪个好 华为nova5pro和华为p30pro对比详情
华为nova5pro和p30pro哪个好 华为nova5pro和华为p30pro对比详情 2019-06-22
返回顶部