brent
brent

Reputation: 403

Silverlight, best way to keep a log file

I'm working on a silverlight project, I would like to write some text to a log file everytime there is a delete or submit on the website.

I would like to keep the file on the server side.

What is the best way to do this?

Upvotes: 0

Views: 1839

Answers (2)

Manoj Attal
Manoj Attal

Reputation: 2826

There are different strategies with which you can do logging in Silverlight - Client, Server OR Both Client and Server. You can also make use of IIS to handle logging Silverlight errors for you.

Here is a detailed article on how to do logging in Silverlight.

Upvotes: 1

Alex
Alex

Reputation: 19

You can use standard loggers like log4net or NLog.

Upvotes: 1

Related Questions