asp.net中如何把应用程序错误写入事件日志(注册事件源)

 using System.Diagnostics;

 using System.Web;

 

 String EventSource = ConfigurationManager.AppSetting["Log_Source"];

 Exception e = Server.GetLastError().GetBaseException();

 EventLog.WriteEntry(EventSource,e.message,EventLogEntryType.Error);

 

 

 

你可能感兴趣的:(asp.net中如何把应用程序错误写入事件日志(注册事件源))