在线时间:8:00-16:00
迪恩网络APP
随时随地掌握行业动态
扫描二维码
关注迪恩网络微信公众号
“開始”->”運行”->”RegEdit”直至HKEY_LOCAL_MACHINE\SYSTEM\CurrentControlSet\Services\Eventlog “使用權限”->安全性”新增”﹐加入Asp.net帳號﹐并賦于讀取的權限->保存退出注冊表。 接下來在Asp.net中我們可以使用如下的C#代碼寫Windows日志﹕
string strMessage = Server.GetLastError().Message;
Server.ClearError(); if(!EventLog.SourceExists("mySource")) EventLog.CreateEventSource("mySource","myLog"); EventLog Event = new EventLog(); Event.Source = "mySource"; Event.WriteEntry(strMessage,EventLogEntryType.Information); 我的機器﹕WindowsXp SP2,VisualStudio.Net2003 |
请发表评论