Hello
I used the code in book, page 40, to get error to actually log the info to event log but it just doesn't work.
AppException.
vb in Core
Private Sub LogEvent(ByVal message as String)
If Not EventLog.SourceExist("ThePhile.com") Then
EventLog.CreateEventSource("ThePhile.com"), "Application")
end if
EventLog.WriteEntry("ThePhile.com", message, EventLogEntryType.Error)
End Sub
What could be the problem??