Fejl i evetLog
Jeg har lavet følgende:protected void Application_Error(Object sender, EventArgs e)
{
//create the message to be stored in the applications log
string strMessage="**************************************************"
+ "\nURL: \n http://localhost/" + Request.Path
+ "\nMESSAGE: \n " + Server.GetLastError().Message
+ "\nSTACK TRACE: \n" + Server.GetLastError().StackTrace
+ "**************************************************";
Server.ClearError();
//Check if the eventlog exists. If not then create it
string strLogName="Application";
if(!EventLog.SourceExists(strLogName))
{
EventLog.CreateEventSource(strLogName, strLogName);
}
//create the LogRequestobject and insert the message
EventLog logAppl=new EventLog();
logAppl.Source=strLogName;
logAppl.WriteEntry(strMessage, EventLogEntryType.Error);
}
som gerne skulle skrive en fejl i eventlog'en, når der opstår en fejl. Jeg har så manuelt forårsaget en Exception, som får IE til at gå ned. Men hvor finder jeg så fejlbeskrivelsen inde i Event Viewer?