I am trying to use Elmah for handling errors in my applications with VS 2010 and MVC 3.
Did anyone used it before, could you kindly guide me the various steps involved for using it in VS 2010.
Basically how to set it up?
Thank you
Sign Up to our social questions and Answers Engine to ask questions, answer people’s questions, and connect with other people.
Login to our social questions & Answers Engine to ask questions answer people’s questions & connect with other people.
Lost your password? Please enter your email address. You will receive a link and will create a new password via email.
Please briefly explain why you feel this question should be reported.
Please briefly explain why you feel this answer should be reported.
Please briefly explain why you feel this user should be reported.
Scott hanselman has something on this. The good news is that its so simple to get up and running you shouldn’t need much guidance. Use nuget to install the package (it’ll set up everything in the web.config correctly) and it’ll start logging errors.
The only thing I think worth mentioning is if you want to catch an error but log it too then use:
Martin