vote up 2 vote down star

i have just taken over an app that has a lot of code like below where exceptions are just caught and Console.Write(xxx) is there.

I would like to change this so i have a simple log to review everything there is a Console.write() now.

What is the simplest way for getting this setup in asp.net mvc to have a file to view on the IIS server.

try
{
    SmtpClient c = new SmtpClient("mail.xxx.org");
    c.Send(msg);
}
catch (Exception ex)
{
    Console.Write(ex.Message.ToString());
}
flag

There are other similar questions re: ASP.NET MVC. Please see... stackoverflow.com/questions/1032373/… – spoon16 Aug 6 at 5:32

2 Answers

vote up 3 vote down check

You might want to try the ELMAH library.

Check the project site for some examples.

Scott Hanselman has also written a blog post or two about it.

link|flag
got setup with this in < 2 mins – oo Aug 6 at 5:32
vote up 1 vote down

Also, this blog has a good explanation of how to log errors caught by the [HandleError] attribute.

link|flag

Your Answer

Get an OpenID
or

Not the answer you're looking for? Browse other questions tagged or ask your own question.