3

Is there any .net logger that would log events and write logs to html page or maybe any logger that stores logs to database or to file and then generates html page from it?

1 Answer 1

3

I am not aware of any complete solution as you ask for; log parsing can be very specific because in logging frameworks like Log4Net or NLog you can define what you log and how your logs look like.

I would use Log4Net and store to database then make your ASP.NET application which loads most recent entries from that database into a gridView, just to start, then if you imagine to add paging, sorting and filtering to that asp.net application you have another whole project to take care of :)

there are also Log4Net appenders which send out HTML emails, see here for an example: http://modelus.com/Products/Log4NetExtensions.aspx you can have a look at the sources and imagine to write your own HTML publisher appender if you really want to go this way...

Sign up to request clarification or add additional context in comments.

Comments

Your Answer

By clicking “Post Your Answer”, you agree to our terms of service and acknowledge you have read our privacy policy.

Start asking to get answers

Find the answer to your question by asking.

Ask question

Explore related questions

See similar questions with these tags.