Error handling design
Could you guys please share your knowledge about Error handling/Logging design strategy for asp.net 3.5 web based application?
thanks.
Know the answer? Post it — somebody with the same question will find it here.
Sign in to answer this question
It is the same account you read, post and publish with — and you will come straight back to this page.
Albertto LiePosted Feb 20, 2009, 2:27 AM
hmm, i ussualy using try and catch syntax
try
{
some code
}
catch (Exception ex)
{
labelError.Text = ex.Message;
}