我正在尝试从服务器上的事件日志中读取..我当前的代码正在运行..
但我担心的是,当事件中有数千个条目时,加载页面需要更长的时间吗?
这是我的工作代码
ArrayList chromeEntries = new ArrayList();
EventLog eventLog = new EventLog("Application", ".");
foreach (EventLogEntry logEntry in eventLog.Entries)
{
if (logEntry.Source.Equals("Application Error"))
{
chromeEntries.Add(logEntry.TimeWritten);
}
}
GridView1.DataSource = chromeEntries;
GridView1.DataBind();
我想在应用程序日志中显示源名称为“Application Error”的时间条目。 我唯一担心的是......我的关注有效吗?或者上面的代码就好了。
任何建议
感谢
好的,我试过这个
EventLog eventLog = new EventLog("Application", ".", "Application Error");
Label1.Text = eventLog.Entries.Count.ToString();
但它计算整个条目而不是仅计算应用程序错误的条目