Importing text files into a database is a common scenario. It gets more interesting though when you are required to import log files generated by ASP.NET’s health monitoring.
We recently wrote a web application that receives and logs information via HTTP handlers. The logging was achieved using ASP.NET’s health monitoring. We wanted additional information to be included in the log entries however, so we implemented a custom event type by extending the WebRequestEvent base class. This allowe ...
[Read more]