.net へのエラー ログの書き込み
著者:Eve Cole
更新時間:2009-06-30 16:12:20
1 .cs 内で保存を実行する
2
3 試してみる
4
5 {}
6
7 キャッチ(例外例)
8 {
9 cm.Connection.Close() ;
10 qiao.Value ="失敗";
11 PublicUnit.SaveError(ex,this.Context,this.Request) ;
12 }
13
14
15
16 写日志の编写
17
18 public static void SaveError(Exception ex,HttpContext hc,HttpRequest hr)
19 {
20弦温度。
21 ストリームライター SW ;
22
23 //如果存在文書
24 if(File.Exists( hr.PhysicalApplicationPath+@"Error.txt "))
25 {
26 sw = File.AppendText( hr.PhysicalApplicationPath+@"Error.txt ") ;
27 temp = DateTime.Now.ToString() + "------------------------------------- --------------------------------------n";
28 temp += "错误メッセージ:" + ex.Message +"n";
29 temp += "問題を引き起こすアプリケーションプログラムまたはオブジェクトの名前:" + ex.Source +"n";
30 temp += "堆栈内容:" + ex.StackTrace +"n";
31 temp += "開始常的方法:" + ex.TargetSite +"n";
32 temp += "错误页面" +hr.RawUrl + "nn";
33
34 sw.WriteLine(一時) ;
35 sw.Close() ;
36 }
37 }
38